2014-03-11 16:52:06 +08:00
|
|
|
#include "main.h"
|
2014-12-27 02:21:55 +08:00
|
|
|
#include "service/PlayerWin.h"
|
2014-03-19 09:50:06 +08:00
|
|
|
#include <shellapi.h>
|
2014-03-11 16:52:06 +08:00
|
|
|
|
|
|
|
int APIENTRY _tWinMain(HINSTANCE hInstance,
|
2014-12-27 02:21:55 +08:00
|
|
|
HINSTANCE hPrevInstance,
|
|
|
|
LPTSTR lpCmdLine,
|
|
|
|
int nCmdShow)
|
2014-03-11 16:52:06 +08:00
|
|
|
{
|
2014-12-27 02:21:55 +08:00
|
|
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
|
|
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
|
|
|
auto player = player::PlayerWin::getInstance();
|
|
|
|
return player->run();
|
2014-06-19 19:45:24 +08:00
|
|
|
}
|