MegaSteve/main.cpp

13 lines
179 B
C++
Raw Permalink Normal View History

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