2022-02-04 17:44:02 +00:00
|
|
|
package love.distributedrebirth.gdxapp;
|
2022-01-28 11:00:59 +00:00
|
|
|
|
2022-02-13 12:24:02 +00:00
|
|
|
import java.util.ArrayList;
|
2022-01-28 11:00:59 +00:00
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
import com.badlogic.gdx.Game;
|
|
|
|
import com.badlogic.gdx.Gdx;
|
|
|
|
import com.badlogic.gdx.Screen;
|
|
|
|
import com.badlogic.gdx.graphics.OrthographicCamera;
|
|
|
|
import com.badlogic.gdx.graphics.g2d.BitmapFont;
|
|
|
|
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
|
|
|
|
import com.badlogic.gdx.utils.ScreenUtils;
|
|
|
|
|
|
|
|
import imgui.ImGui;
|
2022-02-13 12:24:02 +00:00
|
|
|
import imgui.flag.ImGuiCond;
|
|
|
|
import imgui.flag.ImGuiWindowFlags;
|
2022-01-28 11:00:59 +00:00
|
|
|
import imgui.type.ImBoolean;
|
2022-02-04 13:39:25 +00:00
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
|
2022-02-12 15:25:30 +00:00
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnCoffinOpenʸᴰ;
|
|
|
|
import love.distributedrebirth.bassboonyd.jmx.DefaultEnumBaseᴶᴹˣ;
|
2022-02-13 12:24:02 +00:00
|
|
|
import love.distributedrebirth.gdxapp.desktop.DeskApp;
|
|
|
|
import love.distributedrebirth.gdxapp.desktop.DeskAppContourSection;
|
|
|
|
import love.distributedrebirth.gdxapp.desktop.DeskAppRenderer;
|
|
|
|
import love.distributedrebirth.gdxapp.desktop.apps.BasicConsoleApp;
|
|
|
|
import love.distributedrebirth.gdxapp.desktop.apps.HebrewWalletApp;
|
|
|
|
import love.distributedrebirth.gdxapp.desktop.apps.MusicPlayerApp;
|
|
|
|
import love.distributedrebirth.gdxapp.desktop.apps.SystemBaseGlyphApp;
|
|
|
|
import love.distributedrebirth.gdxapp.desktop.apps.SystemBasePartApp;
|
2022-02-04 17:44:02 +00:00
|
|
|
import love.distributedrebirth.gdxapp.music.MusicManager;
|
|
|
|
import love.distributedrebirth.gdxapp.music.MusicSongType;
|
|
|
|
import love.distributedrebirth.gdxapp.screen.ScreenCredits;
|
2022-02-13 12:24:02 +00:00
|
|
|
import love.distributedrebirth.gdxapp.screen.ScreenDesktop0;
|
|
|
|
import love.distributedrebirth.gdxapp.screen.ScreenDesktop1;
|
|
|
|
import love.distributedrebirth.gdxapp.screen.ScreenDesktop2;
|
|
|
|
import love.distributedrebirth.gdxapp.screen.ScreenDesktop3;
|
2022-02-04 17:44:02 +00:00
|
|
|
import love.distributedrebirth.gdxapp.screen.ScreenHelp;
|
|
|
|
import love.distributedrebirth.gdxapp.screen.ScreenIntro;
|
|
|
|
import love.distributedrebirth.gdxapp.screen.ScreenIntroMission;
|
2022-02-04 22:17:52 +00:00
|
|
|
import love.distributedrebirth.gdxapp.screen.ScreenLoading;
|
2022-02-12 15:25:30 +00:00
|
|
|
import love.distributedrebirth.numberxd.base2t.Base2PartsFactory;
|
2022-02-06 16:19:05 +00:00
|
|
|
import love.distributedrebirth.numberxd.base2t.Base2Terminator;
|
2022-02-03 13:21:08 +00:00
|
|
|
import love.distributedrebirth.numberxd.base2t.part.warp.TOSWarpCore;
|
2022-02-05 16:00:19 +00:00
|
|
|
import love.distributedrebirth.numberxd.base2t.part.warp.TOSWarpCoreDriver;
|
|
|
|
import love.distributedrebirth.numberxd.base2t.part.warp.WaterBucket;
|
2022-02-06 16:39:15 +00:00
|
|
|
import love.distributedrebirth.numberxd.glyph.BaseGlyphSet;
|
2022-01-28 11:00:59 +00:00
|
|
|
import net.spookygames.gdx.nativefilechooser.NativeFileChooser;
|
|
|
|
|
2022-01-29 04:50:02 +00:00
|
|
|
/**
|
2022-01-31 12:40:01 +00:00
|
|
|
* Main loop render dispatcher and event handling.
|
2022-01-29 04:50:02 +00:00
|
|
|
*/
|
2022-02-04 13:39:25 +00:00
|
|
|
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
|
2022-02-06 23:09:29 +00:00
|
|
|
public class GDXAppMain extends Game {
|
2022-02-04 22:17:52 +00:00
|
|
|
private int lazyIntCnt = 33;
|
2022-01-28 11:00:59 +00:00
|
|
|
private List<String> args;
|
|
|
|
public NativeFileChooser fileChooser;
|
|
|
|
public SpriteBatch batch;
|
|
|
|
public BitmapFont font;
|
|
|
|
public OrthographicCamera camera;
|
2022-01-31 22:05:27 +00:00
|
|
|
public final int viewWidth;
|
|
|
|
public final int viewHeight;
|
2022-01-28 11:00:59 +00:00
|
|
|
public MusicManager music;
|
|
|
|
|
|
|
|
private Map<Class<? extends Screen>,Screen> screens;
|
2022-02-13 12:24:02 +00:00
|
|
|
private List<GDXAppLauncher> apps;
|
|
|
|
private ImBoolean openWindowFlag = new ImBoolean(true);
|
2022-01-28 11:00:59 +00:00
|
|
|
private ImBoolean showImGuiDemo = new ImBoolean(false);
|
|
|
|
|
2022-02-06 23:09:29 +00:00
|
|
|
public GDXAppMain(List<String> args, int viewWidth, int viewHeight, NativeFileChooser fileChooser) {
|
2022-01-28 11:00:59 +00:00
|
|
|
this.args = args;
|
2022-01-31 22:05:27 +00:00
|
|
|
this.viewWidth = viewWidth;
|
|
|
|
this.viewHeight = viewHeight;
|
2022-01-28 11:00:59 +00:00
|
|
|
this.fileChooser = fileChooser;
|
|
|
|
}
|
|
|
|
|
2022-02-12 15:25:30 +00:00
|
|
|
//TODO: add layer or ?? private <T extends BãßBȍőnCoffinStoreʸᴰ<?>,DefaultAuthorInfoʸᴰ> T[] storeInstances() {
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
private <T extends DefaultEnumBaseᴶᴹˣ<?,?>> T[] coffinInstances() {
|
|
|
|
return (T[]) new DefaultEnumBaseᴶᴹˣ[] {
|
|
|
|
BaseGlyphSet.values()[0],
|
|
|
|
Base2Terminator.INSTANCE,
|
|
|
|
Base2PartsFactory.INSTANCE,
|
|
|
|
TOSWarpCore.INSTANCE
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-02-04 22:17:52 +00:00
|
|
|
private void lazyInit() {
|
|
|
|
if (lazyIntCnt > 0) {
|
|
|
|
lazyIntCnt--;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ImGuiSetup.init();
|
|
|
|
|
2022-02-12 15:25:30 +00:00
|
|
|
// ref to init
|
|
|
|
System.out.println("BãßBȍőnCoffinʸᴰ init......");
|
|
|
|
for (DefaultEnumBaseᴶᴹˣ<?,?> coffin:coffinInstances()) {
|
2022-02-13 12:24:02 +00:00
|
|
|
BãßBȍőnCoffinOpenʸᴰ.lockCoffin(coffin);
|
2022-02-12 15:25:30 +00:00
|
|
|
}
|
|
|
|
System.out.println("BãßBȍőnCoffinʸᴰ init done.");
|
|
|
|
|
2022-02-05 16:00:19 +00:00
|
|
|
try {
|
|
|
|
if (args.contains("warpcore-load")) {
|
|
|
|
System.out.println("warpcore-load: requested");
|
2022-02-05 16:23:12 +00:00
|
|
|
WaterBucket bucket = TOSWarpCoreDriver.newInstance().createReader().readFile("./warpcore.xml");
|
2022-02-05 16:00:19 +00:00
|
|
|
TOSWarpCore.INSTANCE.BãßArmWarpCore(bucket);
|
|
|
|
}
|
|
|
|
if (args.contains("warpcore-save")) {
|
|
|
|
System.out.println("warpcore-save: requested");
|
|
|
|
WaterBucket bucket = TOSWarpCore.INSTANCE.BãßCurrentWarpCore();
|
2022-02-05 16:23:12 +00:00
|
|
|
TOSWarpCoreDriver.newInstance().createWriter().writeFile(bucket, "./warpcore.xml");
|
2022-02-05 16:00:19 +00:00
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
throw new RuntimeException(e);
|
2022-02-04 22:17:52 +00:00
|
|
|
}
|
|
|
|
if (!args.contains("warpcore-nolock")) {
|
2022-02-13 12:24:02 +00:00
|
|
|
System.out.println("warpcore-lock: BãßLockWarpCipher");
|
2022-02-04 22:17:52 +00:00
|
|
|
TOSWarpCore.INSTANCE.BãßLockWarpCipher();
|
2022-02-05 16:00:19 +00:00
|
|
|
} else {
|
|
|
|
System.out.println("warpcore-nolock: requested");
|
2022-02-04 22:17:52 +00:00
|
|
|
}
|
|
|
|
if (args.contains("full-screen")) {
|
2022-02-05 16:00:19 +00:00
|
|
|
System.out.println("full-screen: requested");
|
2022-02-04 22:17:52 +00:00
|
|
|
Gdx.graphics.setFullscreenMode(Gdx.graphics.getDisplayMode());
|
|
|
|
}
|
2022-02-05 16:00:19 +00:00
|
|
|
if (args.contains("intro-skip")) {
|
|
|
|
System.out.println("intro-skip: requested");
|
2022-02-13 12:24:02 +00:00
|
|
|
selectScreen(ScreenDesktop0.class);
|
2022-02-04 22:17:52 +00:00
|
|
|
music.play(MusicSongType.BACKGROUND);
|
|
|
|
} else {
|
|
|
|
selectScreen(ScreenIntro.class);
|
|
|
|
}
|
2022-02-05 16:00:19 +00:00
|
|
|
|
2022-02-04 22:17:52 +00:00
|
|
|
}
|
|
|
|
|
2022-01-28 11:00:59 +00:00
|
|
|
public void create() {
|
|
|
|
batch = new SpriteBatch();
|
|
|
|
font = new BitmapFont();
|
|
|
|
camera = new OrthographicCamera();
|
|
|
|
|
|
|
|
camera.setToOrtho(false, viewWidth, viewHeight);
|
|
|
|
camera.update();
|
|
|
|
batch.setProjectionMatrix(camera.combined);
|
|
|
|
|
2022-02-05 16:00:19 +00:00
|
|
|
boolean musicStop = args.contains("music-stop");
|
|
|
|
if (musicStop) {
|
|
|
|
System.out.println("music-stop: requested");
|
|
|
|
}
|
2022-01-28 11:00:59 +00:00
|
|
|
music = new MusicManager();
|
2022-02-05 16:00:19 +00:00
|
|
|
music.init(musicStop);
|
2022-01-28 11:00:59 +00:00
|
|
|
|
2022-02-04 22:17:52 +00:00
|
|
|
screens = new HashMap<>();
|
2022-02-13 12:24:02 +00:00
|
|
|
apps = new ArrayList<>();
|
|
|
|
apps.add(new GDXAppLauncher("Basic Console", () -> new BasicConsoleApp()));
|
|
|
|
apps.add(new GDXAppLauncher("Base Glyphs", () -> new SystemBaseGlyphApp()));
|
|
|
|
apps.add(new GDXAppLauncher("Base Parts", () -> new SystemBasePartApp()));
|
|
|
|
apps.add(new GDXAppLauncher("Hebrew Wallet", () -> new HebrewWalletApp()));
|
|
|
|
apps.add(new GDXAppLauncher("Music Player", () -> new MusicPlayerApp(this)));
|
2022-01-28 11:00:59 +00:00
|
|
|
|
2022-02-04 22:17:52 +00:00
|
|
|
putScreen(new ScreenLoading(this));
|
2022-01-28 11:00:59 +00:00
|
|
|
putScreen(new ScreenIntro(this));
|
|
|
|
putScreen(new ScreenIntroMission(this));
|
2022-02-13 12:24:02 +00:00
|
|
|
putScreen(new ScreenDesktop0(this));
|
|
|
|
putScreen(new ScreenDesktop1(this));
|
|
|
|
putScreen(new ScreenDesktop2());
|
|
|
|
putScreen(new ScreenDesktop3());
|
2022-01-28 11:00:59 +00:00
|
|
|
putScreen(new ScreenCredits(this));
|
|
|
|
putScreen(new ScreenHelp(this));
|
|
|
|
|
2022-02-04 22:17:52 +00:00
|
|
|
selectScreen(ScreenLoading.class);
|
2022-01-28 11:00:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void dispose() {
|
|
|
|
ImGuiSetup.dispose();
|
|
|
|
for (Screen screen:screens.values()) {
|
|
|
|
screen.dispose();
|
|
|
|
}
|
|
|
|
music.dispose();
|
|
|
|
batch.dispose();
|
|
|
|
font.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void putScreen(Screen screen) {
|
|
|
|
screens.put(screen.getClass(), screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void selectScreen(Class<? extends Screen> screenClass) {
|
|
|
|
Screen screen = screens.get(screenClass);
|
|
|
|
if (screen == null) {
|
|
|
|
throw new NullPointerException("Unknow screen: "+screenClass);
|
|
|
|
}
|
|
|
|
setScreen(screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void render() {
|
|
|
|
ScreenUtils.clear(0f, 0f, 0f, 1f, true);
|
2022-02-13 12:24:02 +00:00
|
|
|
if (screen == null) {
|
|
|
|
return;
|
|
|
|
}
|
2022-02-04 22:17:52 +00:00
|
|
|
if (screen instanceof ScreenLoading) {
|
|
|
|
screen.render(Gdx.graphics.getDeltaTime());
|
|
|
|
lazyInit();
|
|
|
|
return;
|
|
|
|
}
|
2022-01-28 11:00:59 +00:00
|
|
|
ImGuiSetup.imGuiImp.newFrame();
|
|
|
|
ImGui.newFrame();
|
2022-02-13 12:24:02 +00:00
|
|
|
|
|
|
|
GDXAppScreen appScreen = null;
|
|
|
|
if (screen instanceof GDXAppScreen) {
|
|
|
|
appScreen = GDXAppScreen.class.cast(screen);
|
|
|
|
renderMenu(appScreen);
|
2022-01-28 11:00:59 +00:00
|
|
|
}
|
|
|
|
if (showImGuiDemo.get()) {
|
|
|
|
ImGui.showDemoWindow(showImGuiDemo);
|
|
|
|
}
|
2022-02-13 12:24:02 +00:00
|
|
|
if (appScreen != null && appScreen.getDeskAppScreen().getCurrentDeskApp() != null) {
|
|
|
|
int sizeFlags = ImGuiCond.Always;
|
|
|
|
ImGui.setNextWindowPos(5, 30, sizeFlags);
|
|
|
|
ImGui.setNextWindowSize(Gdx.graphics.getWidth() - 10, Gdx.graphics.getHeight() - 35, sizeFlags);
|
|
|
|
int windowFlags = ImGuiWindowFlags.NoMove | ImGuiWindowFlags.NoResize;
|
|
|
|
if (ImGui.begin(appScreen.getDeskAppScreen().getCurrentDeskApp().getName(), openWindowFlag, windowFlags)) {
|
|
|
|
DeskAppRenderer renderer = appScreen.getDeskAppScreen().getCurrentDeskApp().getContours().getContour(DeskAppContourSection.MAIN);
|
|
|
|
if (renderer != null) {
|
|
|
|
renderer.render();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (openWindowFlag.get() == false) {
|
|
|
|
appScreen.getDeskAppScreen().setCurrentDeskApp(null);
|
|
|
|
openWindowFlag.set(true);
|
|
|
|
}
|
|
|
|
ImGui.end();
|
2022-01-28 11:00:59 +00:00
|
|
|
}
|
|
|
|
if (screen != null) {
|
|
|
|
screen.render(Gdx.graphics.getDeltaTime());
|
|
|
|
}
|
|
|
|
ImGui.render();
|
|
|
|
ImGuiSetup.imGuiGlImp.renderDrawData(ImGui.getDrawData());
|
|
|
|
}
|
|
|
|
|
2022-02-13 12:24:02 +00:00
|
|
|
private void renderMenu(GDXAppScreen appScreen) {
|
|
|
|
DeskApp deskApp = appScreen.getDeskAppScreen().getCurrentDeskApp();
|
2022-01-28 11:00:59 +00:00
|
|
|
ImGui.beginMainMenuBar();
|
|
|
|
if (ImGui.beginMenu("Demo")) {
|
2022-01-31 22:05:27 +00:00
|
|
|
if (Gdx.graphics.isFullscreen()) {
|
|
|
|
if (ImGui.menuItem("Window Mode")) {
|
|
|
|
Gdx.graphics.setWindowedMode(viewWidth, viewHeight);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (ImGui.menuItem("Full Screen")) {
|
|
|
|
Gdx.graphics.setFullscreenMode(Gdx.graphics.getDisplayMode());
|
|
|
|
}
|
|
|
|
}
|
2022-02-13 12:24:02 +00:00
|
|
|
if (ImGui.menuItem("Close")) {
|
|
|
|
if (deskApp != null) {
|
|
|
|
appScreen.getDeskAppScreen().removeDeskApp(deskApp);
|
|
|
|
appScreen.getDeskAppScreen().setCurrentDeskApp(null);
|
|
|
|
}
|
2022-01-28 11:00:59 +00:00
|
|
|
}
|
|
|
|
ImGui.separator();
|
2022-01-28 13:04:24 +00:00
|
|
|
if (ImGui.menuItem("Exit")) {
|
|
|
|
dispose();
|
|
|
|
System.exit(0);
|
|
|
|
}
|
|
|
|
ImGui.endMenu();
|
|
|
|
}
|
2022-02-13 12:24:02 +00:00
|
|
|
|
|
|
|
if (deskApp != null) {
|
|
|
|
renderEditMenu(deskApp);
|
|
|
|
}
|
|
|
|
if (ImGui.beginMenu("Desktop")) {
|
|
|
|
if (ImGui.beginMenu("Start")) {
|
|
|
|
for (GDXAppLauncher launcher: apps) {
|
|
|
|
if (ImGui.menuItem(launcher.getName())) {
|
|
|
|
appScreen.getDeskAppScreen().addDeskApp(launcher.getLauncher().get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ImGui.endMenu();
|
2022-01-28 11:00:59 +00:00
|
|
|
}
|
|
|
|
ImGui.separator();
|
2022-02-13 12:24:02 +00:00
|
|
|
for (DeskApp app: appScreen.getDeskAppScreen().getDeskApps()) {
|
|
|
|
if (ImGui.menuItem(app.getName())) {
|
|
|
|
appScreen.getDeskAppScreen().setCurrentDeskApp(app);
|
|
|
|
}
|
2022-01-28 13:04:24 +00:00
|
|
|
}
|
2022-02-13 12:24:02 +00:00
|
|
|
ImGui.endMenu();
|
|
|
|
}
|
|
|
|
if (ImGui.beginMenu("System")) {
|
|
|
|
if (ImGui.menuItem("Desktop0")) {
|
|
|
|
selectScreen(ScreenDesktop0.class);
|
2022-02-05 13:43:14 +00:00
|
|
|
}
|
2022-02-13 12:24:02 +00:00
|
|
|
if (ImGui.menuItem("Desktop1")) {
|
|
|
|
selectScreen(ScreenDesktop1.class);
|
2022-01-31 00:12:29 +00:00
|
|
|
}
|
2022-02-13 12:24:02 +00:00
|
|
|
if (ImGui.menuItem("Desktop2")) {
|
|
|
|
selectScreen(ScreenDesktop2.class);
|
2022-01-28 11:00:59 +00:00
|
|
|
}
|
2022-02-13 12:24:02 +00:00
|
|
|
if (ImGui.menuItem("Desktop3")) {
|
|
|
|
selectScreen(ScreenDesktop3.class);
|
2022-01-28 11:00:59 +00:00
|
|
|
}
|
2022-02-13 12:24:02 +00:00
|
|
|
ImGui.separator();
|
2022-01-28 11:00:59 +00:00
|
|
|
if (ImGui.menuItem("Credits")) {
|
|
|
|
selectScreen(ScreenCredits.class);
|
|
|
|
}
|
|
|
|
if (ImGui.menuItem("Help")) {
|
|
|
|
selectScreen(ScreenHelp.class);
|
|
|
|
}
|
2022-02-13 12:24:02 +00:00
|
|
|
ImGui.separator();
|
|
|
|
if (ImGui.menuItem("ImGui Demo")) {
|
|
|
|
showImGuiDemo.set(true);
|
|
|
|
}
|
2022-01-28 11:00:59 +00:00
|
|
|
ImGui.endMenu();
|
|
|
|
}
|
|
|
|
ImGui.endMainMenuBar();
|
|
|
|
}
|
|
|
|
|
2022-02-13 12:24:02 +00:00
|
|
|
private void renderEditMenu(DeskApp deskApp) {
|
|
|
|
DeskAppRenderer editUndo = deskApp.getContours().getContour(DeskAppContourSection.EDIT_UNDO);
|
|
|
|
DeskAppRenderer editCopy = deskApp.getContours().getContour(DeskAppContourSection.EDIT_COPY);
|
|
|
|
DeskAppRenderer editSelect = deskApp.getContours().getContour(DeskAppContourSection.EDIT_SELECT);
|
|
|
|
DeskAppRenderer editFind = deskApp.getContours().getContour(DeskAppContourSection.EDIT_FIND);
|
|
|
|
DeskAppRenderer editOption = deskApp.getContours().getContour(DeskAppContourSection.EDIT_OPTION);
|
|
|
|
if (editUndo != null || editCopy != null || editSelect != null || editFind != null || editOption != null) {
|
|
|
|
boolean first = false;
|
|
|
|
if (ImGui.beginMenu("Edit")) {
|
|
|
|
if (editUndo != null) {
|
|
|
|
editUndo.render();
|
|
|
|
first = true;
|
|
|
|
}
|
|
|
|
if (editCopy != null) {
|
|
|
|
if (first) {
|
|
|
|
ImGui.separator();
|
|
|
|
}
|
|
|
|
editCopy.render();
|
|
|
|
first = true;
|
|
|
|
}
|
|
|
|
if (editSelect != null) {
|
|
|
|
if (first) {
|
|
|
|
ImGui.separator();
|
|
|
|
}
|
|
|
|
editSelect.render();
|
|
|
|
first = true;
|
|
|
|
}
|
|
|
|
if (editFind != null) {
|
|
|
|
if (first) {
|
|
|
|
ImGui.separator();
|
|
|
|
}
|
|
|
|
editFind.render();
|
|
|
|
first = true;
|
|
|
|
}
|
|
|
|
if (editOption != null) {
|
|
|
|
if (first) {
|
|
|
|
ImGui.separator();
|
|
|
|
}
|
|
|
|
editOption.render();
|
|
|
|
first = true;
|
|
|
|
}
|
|
|
|
ImGui.endMenu();
|
|
|
|
}
|
2022-01-31 22:05:27 +00:00
|
|
|
}
|
2022-01-28 11:00:59 +00:00
|
|
|
}
|
|
|
|
}
|