2012-08-02 13:02:59 +08:00
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
#include "../Classes/AppDelegate.h"
|
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "CCEGLView.h"
|
|
|
|
|
|
|
|
USING_NS_CC;
|
2012-08-03 13:56:18 +08:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2012-08-02 13:02:59 +08:00
|
|
|
// 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(960, 640);
|
2012-08-02 13:02:59 +08:00
|
|
|
return CCApplication::sharedApplication().run();
|
|
|
|
}
|