2012-11-22 16:11:47 +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;
|
|
|
|
CCEGLView* eglView = CCEGLView::sharedOpenGLView();
|
2012-12-29 14:50:00 +08:00
|
|
|
eglView->setViewName("MoonWarriors");
|
2012-11-23 15:07:19 +08:00
|
|
|
eglView->setFrameSize(320, 480);
|
2012-11-22 16:11:47 +08:00
|
|
|
|
|
|
|
int ret = CCApplication::sharedApplication()->run();
|
|
|
|
|
|
|
|
#ifdef USE_WIN32_CONSOLE
|
|
|
|
FreeConsole();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|