2dx版本升级到2.2.4

This commit is contained in:
ozg
2014-06-22 21:34:34 +08:00
parent 4814dff441
commit 6f77b7c001
141 changed files with 15993 additions and 3318 deletions
+19
View File
@@ -0,0 +1,19 @@
#include "../Classes/AppDelegate.h"
#include "cocos2d.h"
#include "CCEGLView.h"
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string>
USING_NS_CC;
int main(int argc, char **argv)
{
// create the application instance
AppDelegate app;
CCEGLView* eglView = CCEGLView::sharedOpenGLView();
eglView->setFrameSize(800, 480);
return CCApplication::sharedApplication()->run();
}