2012-05-29 16:21:23 +08:00
|
|
|
#include "main.h"
|
|
|
|
#include "AppDelegate.h"
|
|
|
|
#include "CCEGLView.h"
|
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
|
|
|
|
// uncomment below line, open debug console
|
|
|
|
// #define USE_WIN32_CONSOLE
|
|
|
|
|
|
|
|
int APIENTRY _tWinMain(HINSTANCE hInstance,
|
|
|
|
HINSTANCE hPrevInstance,
|
|
|
|
LPTSTR lpCmdLine,
|
|
|
|
int nCmdShow)
|
|
|
|
{
|
|
|
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
|
|
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
|
|
|
|
|
|
|
#ifdef USE_WIN32_CONSOLE
|
|
|
|
AllocConsole();
|
|
|
|
freopen("CONIN$", "r", stdin);
|
|
|
|
freopen("CONOUT$", "w", stdout);
|
|
|
|
freopen("CONOUT$", "w", stderr);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// create the application instance
|
|
|
|
AppDelegate app;
|
2012-08-21 15:28:43 +08:00
|
|
|
CCEGLView* eglView = CCEGLView::sharedOpenGLView();
|
|
|
|
eglView->setFrameSize(480, 320);
|
2012-05-29 16:21:23 +08:00
|
|
|
|
2012-08-21 15:28:43 +08:00
|
|
|
int ret = CCApplication::sharedApplication()->run();
|
2012-05-29 16:21:23 +08:00
|
|
|
|
|
|
|
#ifdef USE_WIN32_CONSOLE
|
|
|
|
FreeConsole();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|