fixed bug, clean up, added player name json

This commit is contained in:
Sharlotte
2021-07-24 15:08:49 +09:00
parent 6ff1c67fb7
commit d0951b8960
7 changed files with 116 additions and 38 deletions

17
src/UnitInfo/SVars.java Normal file
View File

@@ -0,0 +1,17 @@
package UnitInfo;
import UnitInfo.core.HudUi;
import UnitInfo.core.PlayerParser;
import UnitInfo.core.Setting;
import arc.Core;
import arc.files.Fi;
import arc.struct.Seq;
public class SVars {
public static Fi modRoot = Core.settings.getDataDirectory().child("mods/UnitInfo");
public static Seq<PlayerParser.PlayerInfo> playerInfos = new Seq<>();
public static Setting settingAdder = new Setting();
public static HudUi hud = new HudUi();
public static PlayerParser playerinfo = new PlayerParser();
}