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
+45
View File
@@ -0,0 +1,45 @@
options
{
module_path="../../../cocos2dx/proj.marmalade/;../../../CocosDenshion/proj.marmalade/;../../../extensions/proj.marmalade/;../../../external/chipmunk/proj.marmalade/;../../../external/Box2D/proj.marmalade/"
s3e-data-dir = "../Resources/"
}
includepaths
{
../Classes
}
subprojects
{
IwGL
cocos2dx
cocos2dx-ext
Box2D
CocosDenshion
# chipmunk
}
defines
{
CC_ENABLE_BOX2D_INTEGRATION=1
}
assets
{
(../Resources)
}
files
{
[Main]
(src)
Main.h
Main.cpp
(../Classes)
AppDelegate.cpp
AppDelegate.h
HelloWorldScene.cpp
HelloWorldScene.h
}
+19
View File
@@ -0,0 +1,19 @@
// Application main file.
#include "Main.h"
#include "../Classes/AppDelegate.h"
// Cocos2dx headers
#include "cocos2d.h"
// Marmaladeheaders
#include "IwGL.h"
USING_NS_CC;
int main()
{
AppDelegate app;
return cocos2d::CCApplication::sharedApplication()->Run();
}
+4
View File
@@ -0,0 +1,4 @@
#ifndef MAIN_H
#define MAIN_H
#endif