block progress bar

This commit is contained in:
Sharlotte
2022-09-24 02:07:12 +09:00
parent 7280cf2ce6
commit 3e55ded420
13 changed files with 93 additions and 88 deletions

View File

@@ -0,0 +1,17 @@
package informatis.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};
}
}