axmol/templates/lua-template-default/frameworks/runtime-src/proj.win32/main.cpp

15 lines
339 B
C++
Raw Normal View History

2015-01-07 17:50:15 +08:00
#include "main.h"
2015-01-08 13:36:59 +08:00
#include "SimulatorWin.h"
2015-01-07 17:50:15 +08:00
#include <shellapi.h>
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(lpCmdLine);
2015-01-08 13:36:59 +08:00
auto simulator = SimulatorWin::getInstance();
return simulator->run();
2015-01-07 17:50:15 +08:00
}