Re-coded everything

This commit is contained in:
Anuken
2017-05-03 00:09:48 -04:00
parent 883610d928
commit b48c0991c7
74 changed files with 1998 additions and 1860 deletions

View File

@@ -0,0 +1,17 @@
package io.anuke.mindustry;
import io.anuke.ucore.modules.Core;
public class Mindustry extends Core {
@Override
public void init(){
add(Vars.control = new Control());
add(Vars.ui = new UI());
}
@Override
public void postInit(){
GameState.reset();
}
}