//------------------------------------------------------------------------------------- // // JGE++ is a hardware accelerated 2D game SDK for PSP/Windows. // // Licensed under the BSD license, see LICENSE in JGE root for details. // // Copyright (c) 2007 James Hui (a.k.a. Dr.Watson) // //------------------------------------------------------------------------------------- #include "../include/config.h" #include #include #include "../include/GameApp.h" static char GameName[] = "Wagic"; //------------------------------------------------------------------------------------- JApp* JGameLauncher::GetGameApp() { return NEW GameApp(); }; //------------------------------------------------------------------------------------- char *JGameLauncher::GetName() { return GameName; } //------------------------------------------------------------------------------------- u32 JGameLauncher::GetInitFlags() { return JINIT_FLAG_NORMAL; }