mirror of https://github.com/axmolengine/axmol.git
15 lines
422 B
C++
15 lines
422 B
C++
#include "main.h"
|
|
#include "cocos2d.h"
|
|
#include "../Classes/AppDelegate.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(480, 320);
|
|
|
|
return CCApplication::sharedApplication().run();
|
|
}
|