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;
|
2012-08-21 15:28:43 +08:00
|
|
|
CCApplication::sharedApplication()->setResourceRootPath("../Resources/");
|
|
|
|
CCEGLView* eglView = CCEGLView::sharedOpenGLView();
|
|
|
|
eglView->setFrameSize(480, 320);
|
2012-08-02 13:02:59 +08:00
|
|
|
|
2012-08-21 15:28:43 +08:00
|
|
|
return CCApplication::sharedApplication()->run();
|
2012-08-02 13:02:59 +08:00
|
|
|
}
|