mirror of https://github.com/axmolengine/axmol.git
17 lines
447 B
C++
17 lines
447 B
C++
#include "main.h"
|
|
|
|
#include "../Classes/AppDelegate.h"
|
|
#include "cocos2d.h"
|
|
#include "CCEGLView.h"
|
|
|
|
USING_NS_CC;
|
|
int main(int argc, char **argv)
|
|
{
|
|
// create the application instance
|
|
AppDelegate app;
|
|
CCApplication::sharedApplication().setResourceRootPath("../Resources/");
|
|
CCEGLView& eglView = CCEGLView::sharedOpenGLView();
|
|
eglView.setFrameSize(960, 640);
|
|
return CCApplication::sharedApplication().run();
|
|
}
|