Search in sources :

Example 1 with EventCallbackParam

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));
}
Also used : EventCallbackParam(main.system.EventCallbackParam) ScreenData(eidolons.libgdx.screens.ScreenData)

Example 2 with EventCallbackParam

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);
}
Also used : EventCallbackParam(main.system.EventCallbackParam)

Example 3 with EventCallbackParam

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));
}
Also used : EventCallbackParam(main.system.EventCallbackParam) ScreenData(eidolons.libgdx.screens.ScreenData)

Aggregations

EventCallbackParam (main.system.EventCallbackParam)3 ScreenData (eidolons.libgdx.screens.ScreenData)2