axmol/tools/simulator/frameworks/runtime-src/proj.win32/main.cpp

15 lines
337 B
C++
Raw Normal View History

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