Better annotation processor IC

This commit is contained in:
Anuken
2022-03-27 12:53:38 -04:00
parent 02f3386c5b
commit 0e2a5cddfd
6 changed files with 16 additions and 7 deletions

View File

@@ -2,6 +2,7 @@ package mindustry.world.consumers;
import arc.func.*;
import mindustry.gen.*;
import mindustry.world.meta.*;
/** A power consumer that uses a dynamic amount of power. */
public class ConsumePowerDynamic extends ConsumePower{
@@ -16,4 +17,9 @@ public class ConsumePowerDynamic extends ConsumePower{
public float requestedPower(Building entity){
return usage.get(entity);
}
@Override
public void display(Stats stats){
}
}