2013-02-19 15:38:30 +08:00
|
|
|
#include "main.h"
|
|
|
|
#include "AppDelegate.h"
|
2014-02-10 18:15:30 +08:00
|
|
|
#include "cocos2d.h"
|
2013-02-19 15:38:30 +08:00
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
|
2016-06-30 02:28:55 +08:00
|
|
|
int WINAPI _tWinMain(HINSTANCE hInstance,
|
2013-02-19 15:38:30 +08:00
|
|
|
HINSTANCE hPrevInstance,
|
|
|
|
LPTSTR lpCmdLine,
|
|
|
|
int nCmdShow)
|
|
|
|
{
|
|
|
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
|
|
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
|
|
|
|
|
|
|
// create the application instance
|
|
|
|
AppDelegate app;
|
2013-07-15 16:24:42 +08:00
|
|
|
return Application::getInstance()->run();
|
2013-02-19 15:38:30 +08:00
|
|
|
}
|