13 lines
179 B
C++
13 lines
179 B
C++
|
#include <Windows.h>
|
||
|
|
||
|
import MegaEngine;
|
||
|
|
||
|
#ifdef NDEBUG
|
||
|
int WINAPI wWinMain(HINSTANCE, HINSTANCE, LPWSTR, int)
|
||
|
#else
|
||
|
int main()
|
||
|
#endif // NDBUG
|
||
|
{
|
||
|
Game().Run();
|
||
|
return 0;
|
||
|
}
|