start with warp core impl

This commit is contained in:
Willem Cazander 2022-02-03 14:21:08 +01:00
parent 92408b67c3
commit 1bd8e53c6b
4 changed files with 67 additions and 5 deletions

View file

@ -28,6 +28,7 @@ import love.distributedrebirth.demo4d.screen.ScreenHelp;
import love.distributedrebirth.demo4d.screen.ScreenIntro;
import love.distributedrebirth.demo4d.screen.ScreenIntroMission;
import love.distributedrebirth.demo4d.screen.ScreenUnicode4D;
import love.distributedrebirth.numberxd.base2t.part.warp.TOSWarpCore;
import net.spookygames.gdx.nativefilechooser.NativeFileChooser;
/**
@ -97,6 +98,13 @@ public class Demo4DMain extends Game {
if (args.contains("full-screen")) {
Gdx.graphics.setFullscreenMode(Gdx.graphics.getDisplayMode());
}
int fileArgu = args.indexOf("warpcore-load");
if (fileArgu != -1) {
// TODO: load warpcore
}
if (!args.contains("warpcore-nolock")) {
TOSWarpCore.INSTANCE.BãßLockWarpCipher();
}
}
@Override