Prototype unit cap mechanic

This commit is contained in:
Anuken
2020-05-12 21:34:27 -04:00
parent 2990013b8e
commit 6a22d45320
13 changed files with 84 additions and 145 deletions
+2 -6
View File
@@ -4,18 +4,14 @@ package mindustry.world.meta;
public enum BlockFlag{
/** Enemy core; primary target for all units. */
core,
/** Rally point for units.*/
rally,
/** Producer of important goods. */
producer,
/** A turret. */
turret,
/** Only the command center block.*/
comandCenter,
/** Repair point. */
repair,
/** Upgrade pad. */
mechPad;
/** Any block that boosts unit capacity. */
unitModifier;
public final static BlockFlag[] all = values();
}