mirror of https://github.com/axmolengine/axmol.git
18 lines
441 B
C++
18 lines
441 B
C++
|
#include "main.h"
|
||
|
#include "../Classes/AppDelegate.h"
|
||
|
|
||
|
USING_NS_CC;
|
||
|
|
||
|
int APIENTRY _tWinMain(HINSTANCE hInstance,
|
||
|
HINSTANCE hPrevInstance,
|
||
|
LPTSTR lpCmdLine,
|
||
|
int nCmdShow)
|
||
|
{
|
||
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
||
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
||
|
|
||
|
// create the application instance
|
||
|
AppDelegate app;
|
||
|
return Application::getInstance()->run();
|
||
|
}
|