mirror of https://github.com/axmolengine/axmol.git
24 lines
791 B
C++
24 lines
791 B
C++
#include "main.h"
|
|
#include "../Classes/AppDelegate.h"
|
|
#include "CCEGLView.h"
|
|
|
|
USING_NS_CC;
|
|
|
|
int APIENTRY _tWinMain(HINSTANCE hInstance,
|
|
HINSTANCE hPrevInstance,
|
|
LPTSTR lpCmdLine,
|
|
int nCmdShow)
|
|
{
|
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
|
|
|
// create the application instance
|
|
AppDelegate app;
|
|
CCEGLView& eglView = CCEGLView::sharedOpenGLView();
|
|
eglView.setViewName("Hello World");
|
|
eglView.setFrameSize(480, 320);
|
|
// set the design resolution screen size, if you want to use Design Resoulution scaled to current screen, please uncomment next line.
|
|
// eglView.setDesignResolutionSize(480, 320);
|
|
return CCApplication::sharedApplication().run();
|
|
}
|