mirror of
https://github.com/yawaflua/Informatis.git
synced 2025-12-13 08:46:28 +02:00
clean code up
This commit is contained in:
@@ -3,7 +3,7 @@ package UnitInfo.ui.draws;
|
||||
import mindustry.gen.Icon;
|
||||
|
||||
public class OverDraws {
|
||||
public static OverDraw range, link, unit, block;
|
||||
public static OverDraw range, link, unit, block, util;
|
||||
public static OverDraw[] all = {};
|
||||
|
||||
public static void init() {
|
||||
@@ -11,6 +11,7 @@ public class OverDraws {
|
||||
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};
|
||||
util = new UtilDraw("Utils", Icon.github);
|
||||
all = new OverDraw[]{range, link, unit, block, util};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user