axmol/HelloWorld/win32/main.cpp

18 lines
408 B
C++
Raw Normal View History

#include "main.h"
2011-10-09 01:11:33 +08:00
#include "../Classes/AppDelegate.h"
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(lpCmdLine);
// create the application instance
AppDelegate app;
return cocos2d::CCApplication::sharedApplication().run();
}