mirror of
https://github.com/yawaflua/Informatis.git
synced 2025-12-13 08:46:28 +02:00
add ToolDisplay
This commit is contained in:
16
src/UnitInfo/ui/draws/OverDraws.java
Normal file
16
src/UnitInfo/ui/draws/OverDraws.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package UnitInfo.ui.draws;
|
||||
|
||||
import mindustry.gen.Icon;
|
||||
|
||||
public class OverDraws {
|
||||
public static OverDraw range, link, unit, block;
|
||||
public static OverDraw[] all = {};
|
||||
|
||||
public static void init() {
|
||||
range = new RangeDraw("Range Draws", Icon.commandRally);
|
||||
link = new LinkDraw("Link Draws", Icon.line);
|
||||
unit = new UnitDraw("Unit Draws", Icon.units);
|
||||
block = new BlockDraw("Block Draws", Icon.crafting);
|
||||
all = new OverDraw[]{range, link, unit, block};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user