mirror of
https://github.com/yawaflua/Informatis.git
synced 2025-12-10 12:09:27 +02:00
18 lines
568 B
Java
18 lines
568 B
Java
package UnitInfo.ui.draws;
|
|
|
|
import mindustry.gen.Icon;
|
|
|
|
public class OverDraws {
|
|
public static OverDraw range, link, unit, block, util;
|
|
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);
|
|
util = new UtilDraw("Utils", Icon.github);
|
|
all = new OverDraw[]{range, link, unit, block, util};
|
|
}
|
|
}
|