2012-08-02 13:02:59 +08:00
|
|
|
#include "main.h"
|
|
|
|
#include "cocos2d.h"
|
2012-08-02 16:23:31 +08:00
|
|
|
#include "../Classes/AppDelegate.h"
|
2012-08-02 13:02:59 +08:00
|
|
|
|
|
|
|
USING_NS_CC;
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
// create the application instance
|
2012-08-03 13:56:18 +08:00
|
|
|
AppDelegate app;
|
|
|
|
CCApplication::sharedApplication().setResourceRootPath("../Resources/");
|
|
|
|
CCEGLView& eglView = CCEGLView::sharedOpenGLView();
|
2012-08-16 11:30:25 +08:00
|
|
|
eglView.setFrameSize(480, 320);
|
2012-08-02 13:02:59 +08:00
|
|
|
|
|
|
|
return CCApplication::sharedApplication().run();
|
|
|
|
}
|