Building loop cleanup

This commit is contained in:
Anuken 2022-02-13 19:33:04 -05:00
parent 03d99cb05a
commit f85aaed323
12 changed files with 55 additions and 254 deletions

View file

@ -1,18 +1,17 @@
package power;
import arc.*;
import arc.math.*;
import arc.util.*;
import mindustry.*;
import mindustry.core.*;
import mindustry.world.*;
import mindustry.world.blocks.power.*;
import mindustry.world.blocks.power.PowerGenerator.*;
import mindustry.world.blocks.power.*;
import mindustry.world.consumers.*;
import org.junit.jupiter.api.*;
import static org.junit.jupiter.api.Assertions.*;
import static org.junit.jupiter.api.DynamicTest.dynamicTest;
import static org.junit.jupiter.api.DynamicTest.*;
/**
* Tests code related to the power system in general, but not specific blocks.
@ -25,7 +24,6 @@ public class PowerTests extends PowerTestFixture{
@BeforeAll
static void init(){
Core.graphics = new FakeGraphics();
Vars.state = new GameState();
}