2010-11-16 11:25:33 +08:00
|
|
|
#include "main.h"
|
|
|
|
|
2011-03-01 14:28:39 +08:00
|
|
|
#include "AppDelegate.h"
|
2010-11-16 11:25:33 +08:00
|
|
|
|
|
|
|
int APIENTRY _tWinMain(HINSTANCE hInstance,
|
|
|
|
HINSTANCE hPrevInstance,
|
|
|
|
LPTSTR lpCmdLine,
|
|
|
|
int nCmdShow)
|
|
|
|
{
|
|
|
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
|
|
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
|
|
|
|
2011-03-01 14:28:39 +08:00
|
|
|
// create the application instance
|
|
|
|
AppDelegate app;
|
2010-11-16 11:25:33 +08:00
|
|
|
|
2011-03-09 15:35:06 +08:00
|
|
|
return cocos2d::CCApplication::sharedApplication().run();
|
2010-11-16 11:25:33 +08:00
|
|
|
}
|