axmol/templates/cpp-template-default/proj.win32/main.cpp

19 lines
449 B
C++
Raw Normal View History

#include "main.h"
#include "AppDelegate.h"
2014-02-10 18:15:30 +08:00
#include "cocos2d.h"
USING_NS_CC;
int WINAPI _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();
}