use of main.system.EventCallbackParam in project Eidolons by IDemiurge.
the class DemoLauncher method screenInit.
@Override
protected void screenInit() {
ScreenData data = new ScreenData(ScreenType.BATTLE, "Loading...");
screenSwitcher(new EventCallbackParam(data));
}
use of main.system.EventCallbackParam in project Eidolons by IDemiurge.
the class GenericLauncher method screenInit.
protected void screenInit() {
ScreenData data = new ScreenData(ScreenType.MAIN_MENU, "Loading...");
screenSwitcher(new EventCallbackParam(data));
WaitMaster.receiveInput(WAIT_OPERATIONS.GDX_READY, true);
WaitMaster.markAsComplete(WAIT_OPERATIONS.GDX_READY);
}
use of main.system.EventCallbackParam in project Eidolons by IDemiurge.
the class IntroTestLauncher method engineInit.
@Override
protected void engineInit() {
ScreenData data = new ScreenData(ScreenType.BATTLE, "Loading...", factory);
screenSwitcher(new EventCallbackParam(data));
}
Aggregations