clean code up

This commit is contained in:
sharlottes
2022-04-19 00:08:49 +09:00
parent 81b2215c9a
commit de799fffd7
17 changed files with 306 additions and 431 deletions

View File

@@ -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};
}
}