This commit is contained in:
Anuken
2022-08-05 09:35:04 -04:00
parent 11d3b1d973
commit 0f831d598d
3 changed files with 2 additions and 7 deletions
@@ -7,8 +7,6 @@ import mindustry.world.meta.*;
/** An abstract class that defines a type of resource that a block can consume. */
public abstract class Consume{
//TODO maybe remove these and make it an interface if possible?
/** If true, this consumer will not influence consumer validity. */
public boolean optional;
/** If true, this consumer will be displayed as a boost input. */
@@ -61,7 +59,4 @@ public abstract class Consume{
}
public void display(Stats stats){}
//TODO this should use efficiency instead - remove or deprecate
//public abstract boolean valid(Building build);
}