This commit is contained in:
Anuken 2020-05-09 22:24:13 -04:00
parent 1fdd9dd124
commit fce89d4db5
2 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,7 @@ import arc.util.async.*;
import mindustry.core.*;
import mindustry.ctype.*;
import mindustry.game.EventType.*;
import mindustry.game.*;
import mindustry.gen.*;
import mindustry.graphics.*;
import mindustry.maps.*;
@ -57,6 +58,7 @@ public abstract class ClientLauncher extends ApplicationCore implements Platform
atlas = TextureAtlas.blankAtlas();
Vars.net = new Net(platform.getNet());
mods = new Mods();
schematics = new Schematics();
Fonts.loadSystemCursors();

View File

@ -166,7 +166,7 @@ public class Vars implements Loadable{
public static LoopControl loops;
public static Platform platform = new Platform(){};
public static Mods mods;
public static Schematics schematics = new Schematics();
public static Schematics schematics;
public static BeControl becontrol;
public static AsyncLogic asyncLogic;
public static TeamIndexProcess teamIndex;