├── .gitignore
├── AnimationSprite
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── Ch1_AnimatingSprites.cpp
│ ├── Ch1_AnimatingSprites.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── SimpleAnimObject.cpp
│ └── SimpleAnimObject.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── dracula_castle.jpg
│ ├── eurostile_30.fnt
│ ├── eurostile_30.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── fps_images.fnt
│ ├── fps_images.png
│ ├── lightning_bolt.png
│ ├── lightning_glow.png
│ ├── simple_bat.plist
│ └── simple_bat.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── animationsprite
│ │ └── AnimationSprite.java
└── proj.win32
│ ├── AnimationSprite.sln
│ ├── AnimationSprite.vcxproj
│ ├── AnimationSprite.vcxproj.filters
│ ├── AnimationSprite.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── BallonRide
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── EnemyGenerator.cpp
│ ├── EnemyGenerator.h
│ ├── GameObjects
│ │ ├── AnimatedObject.cpp
│ │ ├── AnimatedObject.h
│ │ ├── Balloon.cpp
│ │ ├── Balloon.h
│ │ ├── Enemy.cpp
│ │ └── Enemy.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ └── Scenes
│ │ ├── EndScene.cpp
│ │ ├── EndScene.h
│ │ ├── MainScene.cpp
│ │ ├── MainScene.h
│ │ ├── StartScene.cpp
│ │ └── StartScene.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── Icon.png
│ ├── background.plist
│ ├── balloons.plist
│ ├── balloons.png
│ ├── bg_duplicate.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── plane.png
│ └── twitter.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── game
│ │ └── BallonRide.java
└── proj.win32
│ ├── BallonRide.sln
│ ├── BallonRide.vcxproj
│ ├── BallonRide.vcxproj.filters
│ ├── BallonRide.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── BilliardGame
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── Ball.cpp
│ ├── Ball.h
│ ├── CollisionListener.cpp
│ ├── CollisionListener.h
│ ├── Cue.cpp
│ ├── Cue.h
│ ├── GLES-Render.cpp
│ ├── GLES-Render.h
│ ├── GameLayer.cpp
│ ├── GameLayer.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── LineContainer.cpp
│ ├── LineContainer.h
│ ├── b2Sprite.cpp
│ └── b2Sprite.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── HelloWorld.png
│ ├── Icon-72.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon.png
│ ├── Icon@2x.png
│ ├── Info.plist
│ ├── ball.wav
│ ├── drop.wav
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── hit.wav
│ ├── iTunesArtwork
│ ├── ipad
│ │ ├── bg.png
│ │ ├── font.fnt
│ │ ├── font.png
│ │ ├── sprite_sheet.plist
│ │ └── sprite_sheet.png
│ ├── ipadhd
│ │ ├── bg.png
│ │ ├── font.fnt
│ │ ├── font.png
│ │ ├── sprite_sheet.plist
│ │ └── sprite_sheet.png
│ ├── iphone
│ │ ├── bg.png
│ │ ├── font.fnt
│ │ ├── font.png
│ │ ├── sprite_sheet.plist
│ │ └── sprite_sheet.png
│ └── whitedrop.wav
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .externalToolBuilders
│ │ └── BilllardGameBuilder.launch
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.jdt.core.prefs
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── assets
│ │ ├── CloseNormal.png
│ │ ├── CloseSelected.png
│ │ ├── Default.png
│ │ ├── HelloWorld.png
│ │ ├── Icon-72.png
│ │ ├── Icon-Small-50.png
│ │ ├── Icon-Small.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon.png
│ │ ├── Icon@2x.png
│ │ ├── Info.plist
│ │ ├── ball.wav
│ │ ├── drop.wav
│ │ ├── fonts
│ │ │ └── Marker Felt.ttf
│ │ ├── hit.wav
│ │ ├── iTunesArtwork
│ │ ├── ipad
│ │ │ ├── bg.png
│ │ │ ├── font.fnt
│ │ │ ├── font.png
│ │ │ ├── sprite_sheet.plist
│ │ │ └── sprite_sheet.png
│ │ ├── ipadhd
│ │ │ ├── bg.png
│ │ │ ├── font.fnt
│ │ │ ├── font.png
│ │ │ ├── sprite_sheet.plist
│ │ │ └── sprite_sheet.png
│ │ ├── iphone
│ │ │ ├── bg.png
│ │ │ ├── font.fnt
│ │ │ ├── font.png
│ │ │ ├── sprite_sheet.plist
│ │ │ └── sprite_sheet.png
│ │ └── whitedrop.wav
│ ├── build.xml
│ ├── build_native.sh
│ ├── builder.bat
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── billard
│ │ └── BilliardGame.java
└── proj.win32
│ ├── BilliardGame.sln
│ ├── BilliardGame.vcxproj
│ ├── BilliardGame.vcxproj.filters
│ ├── BilliardGame.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── Box2dSample
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── GB2ShapeCache-x.cpp
│ ├── GB2ShapeCache-x.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── HelloWorld.png
│ ├── Icon-72.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon.png
│ ├── Icon@2x.png
│ ├── Info.plist
│ ├── blocks.png
│ ├── drink.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── hamburger.png
│ ├── hotdog.png
│ ├── iTunesArtwork
│ ├── icecream.png
│ ├── icecream2.png
│ ├── icecream3.png
│ ├── orange.png
│ └── shapedefs.plist
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── box2dsample
│ │ └── Box2dSample.java
└── proj.win32
│ ├── Box2dSample.sln
│ ├── Box2dSample.vcxproj
│ ├── Box2dSample.vcxproj.filters
│ ├── Box2dSample.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── BreakOut
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── GameOverScene.cpp
│ ├── GameOverScene.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── MyContactListener.cpp
│ └── MyContactListener.h
├── Resources
│ ├── Ball.jpg
│ ├── Block.jpg
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── HelloWorld.png
│ ├── Icon-72.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon.png
│ ├── Icon@2x.png
│ ├── Paddle.jpg
│ ├── Thumbs.db
│ ├── background-music-aac.caf
│ ├── blip.caf
│ ├── blocks.png
│ └── fonts
│ │ └── Marker Felt.ttf
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── game
│ │ └── BreakOut.java
└── proj.win32
│ ├── BreakOut.sln
│ ├── BreakOut.vcxproj
│ ├── BreakOut.vcxproj.filters
│ ├── BreakOut.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── BrickGame
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── GameOver.cpp
│ ├── GameOver.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── Images
│ │ └── white-512x512.png
│ └── fonts
│ │ └── Marker Felt.ttf
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── brickgame
│ │ └── BrickGame.java
└── proj.win32
│ ├── BrickGame.sln
│ ├── BrickGame.vcxproj
│ ├── BrickGame.vcxproj.filters
│ ├── BrickGame.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── ColoringSprite
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── blank.png
│ ├── fire.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── fps_images.fnt
│ ├── fps_images.png
│ ├── samurai_evil.png
│ └── samurai_good.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── coloringsprite
│ │ └── ColoringSprite.java
└── proj.win32
│ ├── ColoringSprite.sln
│ ├── ColoringSprite.vcxproj
│ ├── ColoringSprite.vcxproj.filters
│ ├── ColoringSprite.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── EditboxEx
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── HelloWorld.png
│ ├── Icon-72.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon.png
│ ├── Icon@2x.png
│ ├── Info.plist
│ ├── extensions
│ │ ├── green_edit.png
│ │ ├── orange_edit.png
│ │ └── yellow_edit.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ └── iTunesArtwork
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── editboxex
│ │ └── EditboxEx.java
└── proj.win32
│ ├── EditboxEx.sln
│ ├── EditboxEx.vcxproj
│ ├── EditboxEx.vcxproj.filters
│ ├── EditboxEx.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── Eskimo
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── Eskimo.cpp
│ ├── Eskimo.h
│ ├── GLES-Render.cpp
│ ├── GLES-Render.h
│ ├── GSwitch.cpp
│ ├── GSwitch.h
│ ├── GameConfig.h
│ ├── GameLayer.cpp
│ ├── GameLayer.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── Igloo.cpp
│ ├── Igloo.h
│ ├── LevelSelectLayer.cpp
│ ├── LevelSelectLayer.h
│ ├── MenuLayer.cpp
│ ├── MenuLayer.h
│ ├── Platform.cpp
│ ├── Platform.h
│ ├── b2Sprite.cpp
│ └── b2Sprite.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── HelloWorld.png
│ ├── Icon-72.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon.png
│ ├── Icon@2x.png
│ ├── Info.plist
│ ├── background.mp3
│ ├── button.wav
│ ├── cap.wav
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── iTunesArtwork
│ ├── igloo.wav
│ ├── ipad
│ │ ├── bg.jpg
│ │ ├── font_levels.fnt
│ │ ├── font_levels.png
│ │ ├── font_messages.fnt
│ │ ├── font_messages.png
│ │ ├── smoke.plist
│ │ ├── snow.plist
│ │ ├── sprite_sheet.plist
│ │ └── sprite_sheet.png
│ ├── ipadhd
│ │ ├── bg.jpg
│ │ ├── font_levels.fnt
│ │ ├── font_levels.png
│ │ ├── font_messages.fnt
│ │ ├── font_messages.png
│ │ ├── smoke.plist
│ │ ├── snow.plist
│ │ ├── sprite_sheet.plist
│ │ └── sprite_sheet.png
│ ├── iphone
│ │ ├── bg.jpg
│ │ ├── font_levels.fnt
│ │ ├── font_levels.png
│ │ ├── font_messages.fnt
│ │ ├── font_messages.png
│ │ ├── smoke.plist
│ │ ├── snow.plist
│ │ ├── sprite_sheet.plist
│ │ └── sprite_sheet.png
│ ├── levels 2.plist
│ ├── levels.plist
│ ├── oops.wav
│ ├── shape.wav
│ └── switch.wav
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .externalToolBuilders
│ │ └── Builder2.launch
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.jdt.core.prefs
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── assets
│ │ ├── CloseNormal.png
│ │ ├── CloseSelected.png
│ │ ├── Default.png
│ │ ├── HelloWorld.png
│ │ ├── Icon-72.png
│ │ ├── Icon-Small-50.png
│ │ ├── Icon-Small.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon.png
│ │ ├── Icon@2x.png
│ │ ├── Info.plist
│ │ ├── background.mp3
│ │ ├── button.wav
│ │ ├── cap.wav
│ │ ├── fonts
│ │ │ └── Marker Felt.ttf
│ │ ├── iTunesArtwork
│ │ ├── igloo.wav
│ │ ├── ipad
│ │ │ ├── bg.jpg
│ │ │ ├── font_levels.fnt
│ │ │ ├── font_levels.png
│ │ │ ├── font_messages.fnt
│ │ │ ├── font_messages.png
│ │ │ ├── smoke.plist
│ │ │ ├── snow.plist
│ │ │ ├── sprite_sheet.plist
│ │ │ └── sprite_sheet.png
│ │ ├── ipadhd
│ │ │ ├── bg.jpg
│ │ │ ├── font_levels.fnt
│ │ │ ├── font_levels.png
│ │ │ ├── font_messages.fnt
│ │ │ ├── font_messages.png
│ │ │ ├── smoke.plist
│ │ │ ├── snow.plist
│ │ │ ├── sprite_sheet.plist
│ │ │ └── sprite_sheet.png
│ │ ├── iphone
│ │ │ ├── bg.jpg
│ │ │ ├── font_levels.fnt
│ │ │ ├── font_levels.png
│ │ │ ├── font_messages.fnt
│ │ │ ├── font_messages.png
│ │ │ ├── smoke.plist
│ │ │ ├── snow.plist
│ │ │ ├── sprite_sheet.plist
│ │ │ └── sprite_sheet.png
│ │ ├── levels 2.plist
│ │ ├── levels.plist
│ │ ├── oops.wav
│ │ ├── shape.wav
│ │ └── switch.wav
│ ├── build.xml
│ ├── build_native.sh
│ ├── builder.bat
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── eskimo
│ │ └── Eskimo.java
└── proj.win32
│ ├── Eskimo.sln
│ ├── Eskimo.vcxproj
│ ├── Eskimo.vcxproj.filters
│ ├── Eskimo.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── HulkAction
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── HulkActions.win32.exe
│ ├── HulkSavage.png
│ ├── Thumbs.db
│ ├── angrypunch.mp3
│ ├── fistbutton.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── glew32.dll
│ ├── hulk_fist_thump
│ │ ├── fist_thump_1_1.png
│ │ ├── fist_thump_1_2.png
│ │ ├── fist_thump_1_3.png
│ │ ├── fist_thump_1_4.png
│ │ ├── fist_thump_1_5.png
│ │ └── fist_thump_1_6.png
│ ├── hulk_namaste
│ │ ├── Thumbs.db
│ │ ├── namaste_1_1.png
│ │ ├── namaste_1_2.png
│ │ ├── namaste_1_3.png
│ │ └── namaste_1_4.png
│ ├── hulk_throw_stone
│ │ ├── stone_throw_3_0.png
│ │ ├── stone_throw_3_1.png
│ │ ├── stone_throw_3_2.png
│ │ ├── stone_throw_3_3.png
│ │ ├── stone_throw_3_4.png
│ │ ├── stone_throw_3_5.png
│ │ ├── stone_throw_3_6.png
│ │ ├── stone_throw_3_7.png
│ │ └── stone_throw_3_8.png
│ ├── hulk_upper_punch
│ │ ├── Thumbs.db
│ │ ├── hulkmoves.png
│ │ ├── hulkpunch.sprites
│ │ ├── slice_0_1.png
│ │ ├── slice_0_2.png
│ │ ├── slice_0_3.png
│ │ ├── slice_0_4.png
│ │ ├── slice_0_5.png
│ │ ├── slice_0_6.png
│ │ ├── slice_0_7.png
│ │ ├── zballoonBlue.png
│ │ └── zballoonRed.png
│ ├── hulkmoves.plist
│ ├── hulkmoves.png
│ ├── hulkpunch.plist
│ ├── hulkpunch.png
│ ├── hulkpunch.tps
│ ├── hulkstanding.png
│ ├── iconv.dll
│ ├── libCocosDenshion.dll
│ ├── libcocos2d.dll
│ ├── libcurl.dll
│ ├── libtiff.dll
│ ├── libxml2.dll
│ ├── mozjs.dll
│ ├── namastebutton.png
│ ├── pthreadVCE2.dll
│ ├── punchbutton.png
│ ├── streetbackground.jpg
│ ├── throwbutton.png
│ └── zlib1.dll
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.jdt.core.prefs
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── bin
│ │ ├── AndroidManifest.xml
│ │ ├── classes
│ │ │ └── com
│ │ │ │ └── future
│ │ │ │ └── game
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── HulkAction.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$string.class
│ │ │ │ └── R.class
│ │ └── jarlist.cache
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── game
│ │ └── HulkAction.java
└── proj.win32
│ ├── HulkAction.sln
│ ├── HulkAction.vcxproj
│ ├── HulkAction.vcxproj.filters
│ ├── HulkAction.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── MagicalTree
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── GameDefines.h
│ ├── GameLayer.cpp
│ ├── GameLayer.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── LevelSelectLayer.cpp
│ ├── LevelSelectLayer.h
│ ├── MTCloud.cpp
│ ├── MTCloud.h
│ ├── MTPlatform.cpp
│ ├── MTPlatform.h
│ ├── MenuLayer.cpp
│ ├── MenuLayer.h
│ ├── Player.cpp
│ ├── Player.h
│ ├── PlayerFSM.cpp
│ ├── PlayerFSM.h
│ ├── PlayerGround.cpp
│ ├── PlayerGround.h
│ ├── PlayerPlatform.cpp
│ ├── PlayerPlatform.h
│ ├── PlayerRope.cpp
│ ├── PlayerRope.h
│ ├── PlayerState.cpp
│ ├── PlayerState.h
│ ├── PlayerVoid.cpp
│ └── PlayerVoid.h
├── Resources
│ ├── 10.png
│ ├── 100.png
│ ├── 5.png
│ ├── 50.png
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── bg.jpg
│ ├── bg.mp3
│ ├── bg.png
│ ├── cloud1.png
│ ├── cloud2.png
│ ├── cloud3.png
│ ├── fire.png
│ ├── flower.png
│ ├── font_levels.fnt
│ ├── font_levels.png
│ ├── font_messages.fnt
│ ├── font_messages.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── jump.wav
│ ├── koalio_stand.png
│ ├── kuwalio_stand-hd.png
│ ├── level1.tmx
│ ├── lightning_bolt.png
│ ├── lightning_glow.png
│ ├── platform1.png
│ ├── platform2.png
│ ├── smoke.plist
│ ├── snow.plist
│ ├── sprite_sheet.plist
│ ├── sprite_sheet.png
│ └── treetile.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .externalToolBuilders
│ │ └── Builder.launch
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.jdt.core.prefs
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── builder.bat
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── lint.xml
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── magicaltree
│ │ └── MagicalTree.java
└── proj.win32
│ ├── MagicalTree.sln
│ ├── MagicalTree.vcxproj
│ ├── MagicalTree.vcxproj.filters
│ ├── MagicalTree.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── MenuSample
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── HelloWorld.png
│ ├── Help-0.png
│ ├── Help-1.png
│ ├── Icon-72.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon.png
│ ├── Icon@2x.png
│ ├── Info.plist
│ ├── Option-0.png
│ ├── Option-1.png
│ ├── Play-0.png
│ ├── Play-1.png
│ ├── Quit-0.png
│ ├── Quit-1.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ └── iTunesArtwork
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── menusample
│ │ └── MenuSample.java
└── proj.win32
│ ├── MenuSample.sln
│ ├── MenuSample.vcxproj
│ ├── MenuSample.vcxproj.filters
│ ├── MenuSample.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── NewAsteroid
├── Classes
│ ├── Android.mk
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── CCParallaxNodeExtras.cpp
│ ├── CCParallaxNodeExtras.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── Resources
│ ├── ._SpaceFlier_sm_1.png
│ ├── ._asteroid.png
│ ├── ._laserbeam_blue.png
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── HelloWorld.png
│ ├── Icon-72.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon.png
│ ├── Icon@2x.png
│ ├── Info.plist
│ ├── SpaceFlier_sm_1.png
│ ├── SpaceGame.caf
│ ├── SpaceGame.mp3
│ ├── SpaceGame.wav
│ ├── Sprites.plist
│ ├── Sprites.pvr.ccz
│ ├── Stars1.plist
│ ├── Stars2.plist
│ ├── Stars3.plist
│ ├── asteroid.png
│ ├── bg_front_spacedust.png
│ ├── bg_galaxy.png
│ ├── bg_planetsunrise.png
│ ├── bg_spacialanomaly.png
│ ├── bg_spacialanomaly2.png
│ ├── explosion_large.caf
│ ├── explosion_large.mp3
│ ├── explosion_large.wav
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── iTunesArtwork
│ ├── laser_ship.caf
│ ├── laser_ship.mp3
│ ├── laser_ship.wav
│ └── laserbeam_blue.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── game
│ │ └── NewAsteroid.java
└── proj.win32
│ ├── NewAsteroid.sln
│ ├── NewAsteroid.vcxproj
│ ├── NewAsteroid.vcxproj.filters
│ ├── NewAsteroid.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── NovelGame
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── AppMacros.h
│ ├── LabelSprite.cpp
│ ├── LabelSprite.h
│ ├── MenuItemSelectLabelSprite.cpp
│ ├── MenuItemSelectLabelSprite.h
│ ├── NovelScene.cpp
│ ├── NovelScene.h
│ ├── TitleScene.cpp
│ ├── TitleScene.h
│ ├── picojson.h
│ └── table
│ │ ├── CustomTableViewCell.cpp
│ │ ├── CustomTableViewCell.h
│ │ ├── TableViewTestScene.cpp
│ │ └── TableViewTestScene.h
├── Resources
│ ├── 013-PostTown01.jpg
│ ├── 017-MineTown01.jpg
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── actor1.png
│ ├── actor2.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── menu_button.png
│ ├── menu_button.png.sb-eb23bb8b-0DKm4d
│ ├── test - 복사본.json
│ └── test.json
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── kyokomi
│ │ └── novelgame
│ │ └── NovelGame.java
├── proj.blackberry
│ ├── .cproject
│ ├── .project
│ ├── bar-descriptor.xml
│ ├── empty
│ │ └── empty
│ ├── icon.png
│ └── main.cpp
├── proj.ios
│ ├── AppController.h
│ ├── AppController.mm
│ ├── Default-568h@2x.png
│ ├── Default.png
│ ├── Default@2x.png
│ ├── Icon-114.png
│ ├── Icon-144.png
│ ├── Icon-57.png
│ ├── Icon-72.png
│ ├── Info.plist
│ ├── NovelGame.xcodeproj
│ │ ├── project.pbxproj
│ │ ├── project.xcworkspace
│ │ │ ├── contents.xcworkspacedata
│ │ │ └── xcuserdata
│ │ │ │ └── kyokomi.xcuserdatad
│ │ │ │ └── UserInterfaceState.xcuserstate
│ │ └── xcuserdata
│ │ │ └── kyokomi.xcuserdatad
│ │ │ ├── xcdebugger
│ │ │ └── Breakpoints.xcbkptlist
│ │ │ └── xcschemes
│ │ │ ├── NovelGame.xcscheme
│ │ │ └── xcschememanagement.plist
│ ├── Prefix.pch
│ ├── RootViewController.h
│ ├── RootViewController.mm
│ └── main.m
├── proj.linux
│ ├── .cproject
│ ├── .project
│ ├── Makefile
│ ├── build.sh
│ └── main.cpp
├── proj.mac
│ ├── AppController.h
│ ├── AppController.mm
│ ├── Icon.icns
│ ├── Info.plist
│ ├── NovelGame.xcodeproj
│ │ └── project.pbxproj
│ ├── Prefix.pch
│ ├── en.lproj
│ │ ├── InfoPlist.strings
│ │ └── MainMenu.xib
│ └── main.m
├── proj.marmalade
│ ├── NovelGame.mkb
│ └── src
│ │ ├── Main.cpp
│ │ └── Main.h
└── proj.win32
│ ├── NovelGame.sln
│ ├── NovelGame.vcxproj
│ ├── NovelGame.vcxproj.filters
│ ├── NovelGame.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── ParallaxScroll
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── CCParallaxScrollNode.cpp
│ ├── CCParallaxScrollNode.h
│ ├── CCParallaxScrollOffset.cpp
│ ├── CCParallaxScrollOffset.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── clouds.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── land_green.png
│ ├── land_grey.png
│ ├── mountain_grey.png
│ └── sky_evening.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── game
│ │ └── ParallaxScroll.java
└── proj.win32
│ ├── ParallaxScroll.sln
│ ├── ParallaxScroll.vcxproj
│ ├── ParallaxScroll.vcxproj.filters
│ ├── ParallaxScroll.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── Parkour
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── AppMacros.h
│ ├── Coin.cpp
│ ├── Coin.h
│ ├── Constant.h
│ ├── GameOverLayer.cpp
│ ├── GameOverLayer.h
│ ├── MainScene.cpp
│ ├── MainScene.h
│ ├── Map.cpp
│ ├── Map.h
│ ├── MapManager.cpp
│ ├── MapManager.h
│ ├── ObjectManager.cpp
│ ├── ObjectManager.h
│ ├── PlayScene.cpp
│ ├── PlayScene.h
│ ├── Rock.cpp
│ ├── Rock.h
│ ├── Runner.cpp
│ ├── Runner.h
│ ├── SimpleRecognizer.cpp
│ ├── SimpleRecognizer.h
│ ├── StatusLayer.cpp
│ └── StatusLayer.h
├── Resources
│ ├── Ground00.png
│ ├── Ground01.png
│ ├── MainBG.png
│ ├── Map00.png
│ ├── Map01.png
│ ├── background.wav
│ ├── crouch.wav
│ ├── jump.wav
│ ├── parkour.plist
│ ├── parkour.png
│ ├── pickup_coin.wav
│ ├── restart_n.png
│ ├── restart_s.png
│ ├── start_n.png
│ └── start_s.png
└── proj.win32
│ ├── Parkour.sln
│ ├── Parkour.vcxproj
│ ├── Parkour.vcxproj.filters
│ ├── Parkour.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── PixelCollison
├── Classes
│ ├── AWTextureEffects.cpp
│ ├── AWTextureEffects.h
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── CCBlade.cpp
│ ├── CCBlade.h
│ ├── CCMutableTexture2D.h
│ ├── CCMutableTexture2D.m
│ ├── CCTexture2DMutable.cpp
│ ├── CCTexture2DMutable.h
│ ├── DebugDraw.cpp
│ ├── DebugDraw.h
│ ├── GLES-Render.cpp
│ ├── GLES-Render.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── KKPixelMaskSprite.cpp
│ ├── KKPixelMaskSprite.h
│ ├── RTLayer.cpp
│ ├── RTLayer.h
│ ├── TouchTrailLayer.cpp
│ ├── TouchTrailLayer.h
│ ├── bitarray_c
│ │ ├── COPYING
│ │ ├── COPYING.LESSER
│ │ ├── Makefile
│ │ ├── README
│ │ ├── bitarray.c
│ │ ├── bitarray.h
│ │ └── sample.c
│ ├── bitarray_cpp
│ │ ├── COPYING
│ │ ├── COPYING.LESSER
│ │ ├── Makefile
│ │ ├── README
│ │ ├── bitarray.cpp
│ │ ├── bitarray.h
│ │ └── sample.cpp
│ └── ccMoreTypes.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── Thumbs.db
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── fps_images-hd.png
│ ├── fps_images-ipadhd.png
│ ├── fps_images.png
│ └── images
│ │ ├── Thumbs.db
│ │ ├── bg.png
│ │ ├── ship1.png
│ │ ├── ship2.png
│ │ └── streak1.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── pixeclCollison
│ │ └── PixelCollison.java
└── proj.win32
│ ├── PixelCollison.sln
│ ├── PixelCollison.vcxproj
│ ├── PixelCollison.vcxproj.filters
│ ├── PixelCollison.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── README.md
├── RageofWar
├── Classes
│ ├── Constants
│ │ └── Constants.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── JoystickClasses
│ │ ├── SneakyButton.cpp
│ │ ├── SneakyButton.h
│ │ ├── SneakyButtonSkinnedBase.cpp
│ │ ├── SneakyButtonSkinnedBase.h
│ │ ├── SneakyJoystick.cpp
│ │ ├── SneakyJoystick.h
│ │ ├── SneakyJoystickSkinnedBase.cpp
│ │ └── SneakyJoystickSkinnedBase.h
│ ├── KeyboardClasses
│ │ ├── Input.cpp
│ │ └── Input.h
│ ├── Scenes
│ │ ├── Intro
│ │ │ ├── IntroLayer.cpp
│ │ │ ├── IntroLayer.h
│ │ │ ├── IntroLayer2.cpp
│ │ │ ├── IntroLayer2.h
│ │ │ ├── IntroLayer3.cpp
│ │ │ ├── IntroLayer3.h
│ │ │ ├── IntroScene.cpp
│ │ │ ├── IntroScene.h
│ │ │ ├── IntroScene2.cpp
│ │ │ ├── IntroScene2.h
│ │ │ ├── IntroScene3.cpp
│ │ │ └── IntroScene3.h
│ │ ├── LevelComplete
│ │ │ ├── GameOverScene.cpp
│ │ │ ├── GameOverScene.h
│ │ │ ├── WinnerScene.cpp
│ │ │ └── WinnerScene.h
│ │ ├── LevelSelector
│ │ │ ├── LevelSelector.h
│ │ │ └── LevelSelectorScene.cpp
│ │ ├── Levels
│ │ │ ├── BackgroundLayer
│ │ │ │ ├── BGScene.cpp
│ │ │ │ ├── BGScene.h
│ │ │ │ ├── TextureBackground.cpp
│ │ │ │ └── TextureBackground.h
│ │ │ ├── LevelGenerator.cpp
│ │ │ ├── LevelGenerator.h
│ │ │ ├── LevelGeneratorHud.cpp
│ │ │ └── LevelGeneratorHud.h
│ │ ├── MainMenu
│ │ │ ├── MainScene.cpp
│ │ │ └── MainScene.h
│ │ └── PlayerSelector
│ │ │ ├── PlayerSelectorScene.cpp
│ │ │ └── PlayerSelectorScene.h
│ └── Singletons
│ │ ├── AppDelegate.cpp
│ │ ├── AppDelegate.h
│ │ ├── CCParallaxNodeExtras.cpp
│ │ ├── CCParallaxNodeExtras.h
│ │ ├── GB2ShapeCache-x.cpp
│ │ ├── GB2ShapeCache-x.h
│ │ ├── GLES-Render.cpp
│ │ └── GLES-Render.h
├── Resources
│ ├── Background1
│ │ ├── Mountain.jpeg
│ │ ├── Mountain2.jpeg
│ │ ├── Noise.jpg
│ │ ├── Noise.png
│ │ ├── Noise2.png
│ │ ├── Noise3.jpg
│ │ ├── Noise3.png
│ │ ├── Noise4.jpg
│ │ ├── Noise4.png
│ │ ├── bg.png
│ │ ├── bluetent.png
│ │ ├── bluetent1.png
│ │ ├── bluetent2.png
│ │ ├── bluetent2tone.png
│ │ ├── bluetent3.png
│ │ ├── bluetent4.png
│ │ ├── bunker.jpg
│ │ ├── bunker.png
│ │ ├── bushytree.jpg
│ │ ├── bushytree.png
│ │ ├── fence.jpg
│ │ ├── fence.png
│ │ ├── fire.png
│ │ ├── fire1.png
│ │ ├── fireart.png
│ │ ├── grass.png
│ │ ├── grass_preview.jpg
│ │ ├── greentent.jpg
│ │ ├── greytent.png
│ │ ├── greytent2.png
│ │ ├── ground.jpg
│ │ ├── jeep2.png
│ │ ├── longtree.png
│ │ ├── mountoverlay2.png
│ │ ├── tree.jpg
│ │ ├── tree1.png
│ │ ├── tree2.jpg
│ │ ├── treetilt.jpg
│ │ ├── treetilt.png
│ │ └── twotrees.jpg
│ ├── BodyPlist.plist
│ ├── Box2dPlist.plist
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── Menus
│ │ └── Intro
│ │ │ ├── bgIntro1.png
│ │ │ ├── bgIntro2.png
│ │ │ ├── bgIntro21.png
│ │ │ ├── bgIntro22.png
│ │ │ ├── bgIntro23.png
│ │ │ ├── bgIntro3.png
│ │ │ ├── bgIntro31.png
│ │ │ ├── bgIntro32.png
│ │ │ └── bgIntro33.png
│ ├── PlayerBody
│ │ ├── Head.png
│ │ ├── LeftArm.png
│ │ ├── LeftLeg.png
│ │ ├── LeftLowerArm.png
│ │ ├── LeftUpperArm.png
│ │ ├── RightArm.png
│ │ ├── RightLeg.png
│ │ ├── RightLowerArm.png
│ │ ├── RightUpperArm.png
│ │ └── Torso.png
│ ├── PlayerBody2
│ │ ├── Head.png
│ │ ├── LeftArm.png
│ │ ├── LeftLeg.png
│ │ ├── LeftLowerArm.png
│ │ ├── LeftUpperArm.png
│ │ ├── RightArm.png
│ │ ├── RightLeg.png
│ │ ├── RightLowerArm.png
│ │ ├── RightUpperArm.png
│ │ └── Torso.png
│ ├── PlayerType
│ │ ├── BlackCommando.png
│ │ ├── BlackCommando2.png
│ │ ├── GoldenCommando.png
│ │ ├── GoldenCommando2.png
│ │ ├── GreenCommando.png
│ │ └── GreenCommando2.png
│ ├── RageOfWar1.win32.exe
│ ├── Score
│ │ ├── 100.png
│ │ ├── 1000.png
│ │ ├── 1000g.png
│ │ ├── 100g.png
│ │ ├── 2000.png
│ │ ├── 2000g.png
│ │ ├── 500.png
│ │ ├── 5000.png
│ │ ├── 5000g.png
│ │ └── 500g.png
│ ├── Sound
│ │ ├── Campblast1.mp3
│ │ ├── Campblast2.mp3
│ │ ├── CircusMusic.mp3
│ │ ├── DesertMode.mp3
│ │ ├── DesertModelong.mp3
│ │ ├── FireBurning.mp3
│ │ ├── GunFire.mp3
│ │ ├── GunFirelong.mp3
│ │ ├── Helicopter.mp3
│ │ ├── Helicopterlong.mp3
│ │ ├── Helicopterold.mp3
│ │ ├── Jeep.mp3
│ │ ├── JeepBlast.mp3
│ │ ├── Level2.mp3
│ │ ├── Menu.mp3
│ │ ├── ModernMode.mp3
│ │ ├── Rifle.mp3
│ │ ├── Winner.wav
│ │ ├── alarm.wav
│ │ ├── barreta.wav
│ │ ├── buttonclick.mp3
│ │ ├── clown.mp3
│ │ ├── defeat.mp3
│ │ ├── doublegun.mp3
│ │ ├── doublegunlong.wav
│ │ ├── dying.wav
│ │ ├── enemydying.wav
│ │ ├── explosion.mp3
│ │ ├── hit.wav
│ │ ├── jumping.wav
│ │ ├── powerup.mp3
│ │ ├── rayguntrans.mp3
│ │ ├── rock.mp3
│ │ ├── shotgun.mp3
│ │ ├── shotgun2.mp3
│ │ ├── shotgunlong.mp3
│ │ ├── snipershot.wav
│ │ ├── truck.mp3
│ │ ├── truckblast.mp3
│ │ ├── vehiclehit.wav
│ │ ├── walking.wav
│ │ ├── won.mp3
│ │ ├── wood.mp3
│ │ └── woodexplosion.mp3
│ ├── SpriteImages
│ │ ├── Balloon.png
│ │ ├── BaseCamp.png
│ │ ├── BaseCampTNT.png
│ │ ├── BgDesert.png
│ │ ├── BgSunSet.png
│ │ ├── Blast1.png
│ │ ├── Blast2.png
│ │ ├── Blast3.png
│ │ ├── Blast4.png
│ │ ├── Blast5.png
│ │ ├── Bullet.png
│ │ ├── Emptybar.png
│ │ ├── EndlessMode.png
│ │ ├── EndlessMode2.png
│ │ ├── Flag1.png
│ │ ├── Flag2.png
│ │ ├── Flag3.png
│ │ ├── Flag4.png
│ │ ├── Game Dev.lnk
│ │ ├── Gamemode.png
│ │ ├── HBullet.png
│ │ ├── Jeepbullet.png
│ │ ├── Leve1Button.png
│ │ ├── Leve2Button.png
│ │ ├── LongRock.png
│ │ ├── LongWood.png
│ │ ├── MissionComplete.png
│ │ ├── MissionInComplete.png
│ │ ├── Power.png
│ │ ├── ScoreBar.png
│ │ ├── StartGame.png
│ │ ├── StartGame2.png
│ │ ├── SurvivalMode.png
│ │ ├── SurvivalMode1.png
│ │ ├── SurvivalMode2.png
│ │ ├── TNT1.png
│ │ ├── TNT2.png
│ │ ├── TankHead.png
│ │ ├── TankHead1.png
│ │ ├── TankHead2.png
│ │ ├── TankHead3.png
│ │ ├── TankWheel.png
│ │ ├── TankWheel2.png
│ │ ├── Tbullet.png
│ │ ├── TimeMode.png
│ │ ├── TimeMode2.png
│ │ ├── Wood.png
│ │ ├── Wood2.png
│ │ ├── armyrock.png
│ │ ├── backbutton.png
│ │ ├── balloonBlue.png
│ │ ├── balloonRed.png
│ │ ├── balloonYellow.png
│ │ ├── bg2.png
│ │ ├── bg2x.png
│ │ ├── bgEmpty.png
│ │ ├── bgEmptybr.png
│ │ ├── bgHome.png
│ │ ├── bgIntro1.png
│ │ ├── bgMainMenu.png
│ │ ├── bgemptyb.png
│ │ ├── bird1.png
│ │ ├── bullet24.png
│ │ ├── clowdlarge.png
│ │ ├── clowdsmall.png
│ │ ├── gameover.png
│ │ ├── ground.png
│ │ ├── healthbar.png
│ │ ├── healthbar2.png
│ │ ├── heathbarborder.png
│ │ ├── heathbarborder2.png
│ │ ├── level1.png
│ │ ├── level2.png
│ │ ├── playerselector.png
│ │ ├── rock.png
│ │ ├── rope_seg_new2.png
│ │ ├── truckGun1.png
│ │ ├── truckGun2.png
│ │ ├── truckGun3.png
│ │ ├── truckbullet.png
│ │ ├── woodpiece.png
│ │ └── youwin.png
│ ├── bgw.png
│ ├── dpadDown.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── glew32.dll
│ ├── handDown.png
│ ├── handUp.png
│ ├── iconv.dll
│ ├── joystickDown.png
│ ├── jumpDown.png
│ ├── jumpUp.png
│ ├── libCocosDenshion.dll
│ ├── libcocos2d.dll
│ ├── libcurl.dll
│ ├── libtiff.dll
│ ├── libxml2.dll
│ ├── mozjs.dll
│ ├── pause button.png
│ ├── play button.png
│ ├── plist1.plist
│ ├── plist1.png
│ ├── plist2.plist
│ ├── plist2.png
│ ├── pthreadVCE2.dll
│ └── zlib1.dll
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.jdt.core.prefs
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── game
│ │ └── RageofWar.java
└── proj.win32
│ ├── RageofWar.sln
│ ├── RageofWar.vcxproj
│ ├── RageofWar.vcxproj.filters
│ ├── RageofWar.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── RushHour
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── Block.cpp
│ ├── Block.h
│ ├── GameLayer.cpp
│ ├── GameLayer.h
│ ├── GameSprite.cpp
│ ├── GameSprite.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── Player.cpp
│ ├── Player.h
│ ├── Terrain.cpp
│ └── Terrain.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── HelloWorld.png
│ ├── Icon-72.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon.png
│ ├── Icon@2x.png
│ ├── Info.plist
│ ├── background.mp3
│ ├── crashing.wav
│ ├── falling.wav
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── hitBuilding.wav
│ ├── iTunesArtwork
│ ├── ipad
│ │ ├── bg.png
│ │ ├── font.fnt
│ │ ├── font.png
│ │ ├── sprite_sheet.plist
│ │ └── sprite_sheet.png
│ ├── ipadhd
│ │ ├── bg.png
│ │ ├── font.fnt
│ │ ├── font.png
│ │ ├── sprite_sheet.plist
│ │ └── sprite_sheet.png
│ ├── iphone
│ │ ├── bg.png
│ │ ├── font.fnt
│ │ ├── font.png
│ │ ├── sprite_sheet.plist
│ │ └── sprite_sheet.png
│ ├── jump.wav
│ ├── openUmbrella.wav
│ └── start.wav
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── rushhour
│ │ └── RushHour.java
└── proj.win32
│ ├── RushHour.sln
│ ├── RushHour.vcxproj
│ ├── RushHour.vcxproj.filters
│ ├── RushHour.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── ScrollView
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── GalleryLayer.cpp
│ ├── GalleryLayer.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── ListViewLayer.cpp
│ └── ListViewLayer.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── bg_01.png
│ ├── bg_02.png
│ ├── bg_03.png
│ ├── button_normal.png
│ ├── button_selected.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── listitem.png
│ └── listitem2.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── scrollview
│ │ └── ScrollView.java
└── proj.win32
│ ├── ScrollView.sln
│ ├── ScrollView.vcxproj
│ ├── ScrollView.vcxproj.filters
│ ├── ScrollView.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── SpaceFighter
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── Asteroid.cpp
│ ├── Asteroid.h
│ ├── BlackFadeLayer.cpp
│ ├── BlackFadeLayer.h
│ ├── Bullet.cpp
│ ├── Bullet.h
│ ├── CCParallaxScrollNode.cpp
│ ├── CCParallaxScrollNode.h
│ ├── CCParallaxScrollOffset.cpp
│ ├── CCParallaxScrollOffset.h
│ ├── ControlsLayer.cpp
│ ├── ControlsLayer.h
│ ├── GameConfig.h
│ ├── GameLayer.cpp
│ ├── GameLayer.h
│ ├── GameOverScene.cpp
│ ├── GameOverScene.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── LogoScene.cpp
│ ├── LogoScene.h
│ ├── Monster.cpp
│ ├── Monster.h
│ ├── PresentLayer.cpp
│ ├── PresentLayer.h
│ ├── SSGravityBomb.cpp
│ ├── SSGravityBomb.h
│ ├── SSLaser.cpp
│ ├── SSLaser.h
│ ├── SSUtil.cpp
│ ├── SSUtil.h
│ ├── ScoresLayer.cpp
│ ├── ScoresLayer.h
│ ├── Ship.cpp
│ ├── Ship.h
│ ├── TitleLayer.cpp
│ ├── TitleLayer.h
│ ├── Transition.h
│ └── pugixml
│ │ ├── foreach.hpp
│ │ ├── pugiconfig.hpp
│ │ ├── pugixml.cpp
│ │ └── pugixml.hpp
├── Resources
│ ├── 4.png
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── ExplodingRing.plist
│ ├── HelloWorld.png
│ ├── Icon-72.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon.png
│ ├── Icon@2x.png
│ ├── Mountain2.png
│ ├── StartGame.png
│ ├── StartGame2.png
│ ├── Thumbs.db
│ ├── Universe.PNG
│ ├── asteroid-large.png
│ ├── asteroid-medium.png
│ ├── asteroid-small.png
│ ├── bullet.png
│ ├── exp0.png
│ ├── exp1.png
│ ├── exp2.png
│ ├── exp3.png
│ ├── exp4.png
│ ├── exp5.png
│ ├── exp6.png
│ ├── exp7.png
│ ├── explosion.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── land_green.png
│ ├── laserbeam_blue.png
│ └── ship.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── spacefighter
│ │ └── SpaceFighter.java
└── proj.win32
│ ├── SpaceFighter.sln
│ ├── SpaceFighter.vcxproj
│ ├── SpaceFighter.vcxproj.filters
│ ├── SpaceFighter.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── SuperKoalio
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── Resources
│ ├── 10.png
│ ├── 100.png
│ ├── 5.png
│ ├── 50.png
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── Info.plist
│ ├── bird.png
│ ├── door_closed.png
│ ├── door_open.png
│ ├── fire.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── hurt.wav
│ ├── jump.wav
│ ├── koalio_stand.png
│ ├── kuwalio_stand-hd.png
│ ├── level1.mp3
│ ├── level1.tmx
│ ├── replay.png
│ ├── snow.png
│ └── tileSet.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── koalio
│ │ └── SuperKoalio.java
└── proj.win32
│ ├── GameLevelLayer.cpp
│ ├── GameLevelLayer.h
│ ├── IntVal.h
│ ├── Player.cpp
│ ├── Player.h
│ ├── SuperKoalio.sln
│ ├── SuperKoalio.vcxproj
│ ├── SuperKoalio.vcxproj.filters
│ ├── SuperKoalio.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── TextAdv
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── Library
│ │ ├── ActualPath.h
│ │ ├── GameHelper.cpp
│ │ ├── GameHelper.h
│ │ ├── GameObject.cpp
│ │ ├── GameObject.h
│ │ ├── GameObjectTypes.h
│ │ ├── LuaDecisionTree.cpp
│ │ ├── LuaDecisionTree.h
│ │ ├── RayCast.h
│ │ ├── Vector3D.cpp
│ │ └── Vector3D.h
│ ├── Recipe.cpp
│ ├── Recipe.h
│ ├── lua-5.1.4
│ │ ├── COPYRIGHT
│ │ ├── HISTORY
│ │ ├── INSTALL
│ │ ├── Makefile
│ │ ├── README
│ │ ├── doc
│ │ │ ├── amazon.gif
│ │ │ ├── contents.html
│ │ │ ├── cover.png
│ │ │ ├── logo.gif
│ │ │ ├── lua.1
│ │ │ ├── lua.css
│ │ │ ├── lua.html
│ │ │ ├── luac.1
│ │ │ ├── luac.html
│ │ │ ├── manual.css
│ │ │ ├── manual.html
│ │ │ └── readme.html
│ │ ├── etc
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── all.c
│ │ │ ├── lua.hpp
│ │ │ ├── lua.ico
│ │ │ ├── lua.pc
│ │ │ ├── luavs.bat_
│ │ │ ├── min.c
│ │ │ ├── noparser.c
│ │ │ └── strict.lua
│ │ ├── src
│ │ │ ├── Makefile
│ │ │ ├── lapi.c
│ │ │ ├── lapi.h
│ │ │ ├── lauxlib.c
│ │ │ ├── lauxlib.h
│ │ │ ├── lbaselib.c
│ │ │ ├── lcode.c
│ │ │ ├── lcode.h
│ │ │ ├── ldblib.c
│ │ │ ├── ldebug.c
│ │ │ ├── ldebug.h
│ │ │ ├── ldo.c
│ │ │ ├── ldo.h
│ │ │ ├── ldump.c
│ │ │ ├── lfunc.c
│ │ │ ├── lfunc.h
│ │ │ ├── lgc.c
│ │ │ ├── lgc.h
│ │ │ ├── linit.c
│ │ │ ├── liolib.c
│ │ │ ├── llex.c
│ │ │ ├── llex.h
│ │ │ ├── llimits.h
│ │ │ ├── lmathlib.c
│ │ │ ├── lmem.c
│ │ │ ├── lmem.h
│ │ │ ├── loadlib.c
│ │ │ ├── lobject.c
│ │ │ ├── lobject.h
│ │ │ ├── lopcodes.c
│ │ │ ├── lopcodes.h
│ │ │ ├── loslib.c
│ │ │ ├── lparser.c
│ │ │ ├── lparser.h
│ │ │ ├── lstate.c
│ │ │ ├── lstate.h
│ │ │ ├── lstring.c
│ │ │ ├── lstring.h
│ │ │ ├── lstrlib.c
│ │ │ ├── ltable.c
│ │ │ ├── ltable.h
│ │ │ ├── ltablib.c
│ │ │ ├── ltm.c
│ │ │ ├── ltm.h
│ │ │ ├── lua.c
│ │ │ ├── lua.h
│ │ │ ├── luac.c
│ │ │ ├── luaconf.h
│ │ │ ├── lualib.h
│ │ │ ├── lundump.c
│ │ │ ├── lundump.h
│ │ │ ├── lvm.c
│ │ │ ├── lvm.h
│ │ │ ├── lzio.c
│ │ │ ├── lzio.h
│ │ │ └── print.c
│ │ └── test
│ │ │ ├── README
│ │ │ ├── bisect.lua
│ │ │ ├── cf.lua
│ │ │ ├── echo.lua
│ │ │ ├── env.lua
│ │ │ ├── factorial.lua
│ │ │ ├── fib.lua
│ │ │ ├── fibfor.lua
│ │ │ ├── globals.lua
│ │ │ ├── hello.lua
│ │ │ ├── life.lua
│ │ │ ├── luac.lua
│ │ │ ├── printf.lua
│ │ │ ├── readonly.lua
│ │ │ ├── sieve.lua
│ │ │ ├── sort.lua
│ │ │ ├── table.lua
│ │ │ ├── trace-calls.lua
│ │ │ ├── trace-globals.lua
│ │ │ └── xd.lua
│ ├── mcLua.cpp
│ └── mcLua.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── big_louie.plist
│ ├── big_louie.png
│ ├── bl_gun_pointed_at_you.png
│ ├── blank.png
│ ├── bricks.png
│ ├── bricks2.png
│ ├── decision_tree.lua
│ ├── dialog_bg.png
│ ├── dpad_buttons.plist
│ ├── dpad_buttons.png
│ ├── end_button.png
│ ├── eurostile_30.fnt
│ ├── eurostile_30.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── grass_texture.png
│ ├── gridNode.png
│ ├── gunman_darkblue.plist
│ ├── gunman_darkblue.png
│ ├── gunman_lightblue.plist
│ ├── gunman_lightblue.png
│ ├── gunman_orange.plist
│ ├── gunman_orange.png
│ ├── gunman_red.plist
│ ├── gunman_red.png
│ ├── red_button_0.png
│ ├── red_button_1.png
│ ├── start_button.png
│ ├── tilemap.tmx
│ ├── tileset.png
│ ├── water_texture.png
│ ├── world_sprites.plist
│ └── world_sprites.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── Future
│ │ └── hellocpp
│ │ └── HelloCpp.java
└── proj.win32
│ ├── HelloCpp.sln
│ ├── HelloCpp.vcxproj
│ ├── HelloCpp.vcxproj.filters
│ ├── HelloCpp.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── TileMapEx4
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── HelloWorld.png
│ ├── Icon-72.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon.png
│ ├── Icon@2x.png
│ ├── Images
│ │ └── dragon_animation.png
│ ├── Info.plist
│ ├── TileMaps
│ │ ├── TestDesert.tmx
│ │ ├── metaset.png
│ │ └── tmw_desert_spacing.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ └── iTunesArtwork
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── tilemapex4
│ │ └── TileMapEx4.java
└── proj.win32
│ ├── TileMapEx4.sln
│ ├── TileMapEx4.vcxproj
│ ├── TileMapEx4.vcxproj.filters
│ ├── TileMapEx4.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── TileMapTutorial
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── TileMapTutorialAppDelegate.h
│ └── TileMapTutorialAppDelegate.m
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── ForeGroundTest.tmx
│ ├── HelloWorld.png
│ ├── Icon.png
│ ├── Info.plist
│ ├── Target.png
│ ├── TileMapTest.tmx
│ ├── background.png
│ ├── ball.png
│ ├── fixed-ortho-test2.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ └── fps_images.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── tilemaptutorial
│ │ └── TileMapTutorial.java
└── proj.win32
│ ├── TileMapTutorial.sln
│ ├── TileMapTutorial.vcxproj
│ ├── TileMapTutorial.vcxproj.filters
│ ├── TileMapTutorial.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── TomTheTurret
├── Classes
│ ├── ActionLayer.cpp
│ ├── ActionLayer.h
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── GameLevel.cpp
│ ├── GameLevel.h
│ ├── GameState.cpp
│ ├── GameState.h
│ ├── LoadingLayer.cpp
│ ├── LoadingLayer.h
│ ├── MainMenuLayer.cpp
│ ├── MainMenuLayer.h
│ ├── Monster.cpp
│ ├── Monster.h
│ ├── StoryLayer.cpp
│ └── StoryLayer.h
├── Resources
│ └── Images
│ │ ├── Default.png
│ │ ├── DefaultLandscape.png
│ │ ├── Info.plist
│ │ ├── background.caf
│ │ ├── femaleHit.wav
│ │ ├── maleHit.wav
│ │ ├── shoot.wav
│ │ ├── sprites.plist
│ │ └── sprites.png
└── proj.win32
│ ├── TomTheTurret.sln
│ ├── TomTheTurret.vcxproj
│ ├── TomTheTurret.vcxproj.filters
│ ├── TomTheTurret.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── TowerDefense
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── Enemy.cpp
│ ├── Enemy.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── Tower.cpp
│ ├── Tower.h
│ ├── Waypoint.cpp
│ └── Waypoint.h
├── Resources
│ ├── 8bitDungeonLevel.mp3
│ ├── Bg.png
│ ├── TowersPosition.plist
│ ├── Waves.plist
│ ├── bullet.png
│ ├── enemy.png
│ ├── font_red_14.fnt
│ ├── font_red_14.png
│ ├── laser_shoot.wav
│ ├── life_lose.wav
│ ├── open_spot.png
│ ├── tower.png
│ └── tower_place.wav
└── proj.win32
│ ├── TowerDefence.sln
│ ├── TowerDefense.rc
│ ├── TowerDefense.win32.vcxproj
│ ├── TowerDefense.win32.vcxproj.filters
│ ├── TowerDefense.win32.vcxproj.user
│ ├── main.cpp
│ ├── main.h
│ ├── res
│ └── TowerDefense.ico
│ └── resource.h
├── TweeJump
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── GameScene.cpp
│ ├── GameScene.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── MainScene.cpp
│ └── MainScene.h
├── ProductionArt
│ ├── 10.png
│ ├── 100.png
│ ├── 5.png
│ ├── 50.png
│ ├── Default.png
│ ├── background.png
│ ├── bird.png
│ ├── bitmapFont.png
│ ├── changePlayerButton.png
│ ├── cloud1.png
│ ├── cloud2.png
│ ├── cloud3.png
│ ├── highscores.png
│ ├── icon.png
│ ├── platform1.png
│ ├── platform2.png
│ ├── platform2.xcf
│ ├── playAgainButton.png
│ ├── sprites - Copy.png
│ ├── sprites.png
│ ├── spritesheet.png
│ └── spritesheet.tps
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── HelloWorld.png
│ ├── Images
│ │ ├── Thumbs.db
│ │ ├── bitmapFont.fnt
│ │ ├── bitmapFont.png
│ │ ├── icon.png
│ │ ├── spritesheet.plist
│ │ └── spritesheet.png
│ ├── app.config.txt
│ ├── app.icf
│ ├── development.icf
│ ├── fonts
│ │ └── Marker Felt.ttf
│ └── spritesheet.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .externalToolBuilders
│ │ └── Builder.launch
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.jdt.core.prefs
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── assets
│ │ ├── CloseNormal.png
│ │ ├── CloseSelected.png
│ │ ├── HelloWorld.png
│ │ ├── Images
│ │ │ ├── Thumbs.db
│ │ │ ├── bitmapFont.fnt
│ │ │ ├── bitmapFont.png
│ │ │ ├── icon.png
│ │ │ ├── spritesheet.plist
│ │ │ └── spritesheet.png
│ │ ├── app.config.txt
│ │ ├── app.icf
│ │ ├── development.icf
│ │ ├── fonts
│ │ │ └── Marker Felt.ttf
│ │ └── spritesheet.png
│ ├── build.xml
│ ├── build_native.sh
│ ├── builder.bat
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── lint.xml
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── game
│ │ └── TweeJump.java
└── proj.win32
│ ├── TweeJump.sln
│ ├── TweeJump.vcxproj
│ ├── TweeJump.vcxproj.filters
│ ├── TweeJump.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── img
├── snap0215.jpg
├── snap0216.jpg
├── snap0217.jpg
├── snap0218.jpg
├── snap0219.jpg
├── snap0220.jpg
├── snap0221.jpg
├── snap0222.jpg
├── snap0223.jpg
├── snap0224.jpg
├── snap0225.jpg
├── snap0226.jpg
├── snap0227.jpg
├── snap0228.jpg
├── snap0229.jpg
├── snap0230.jpg
├── snap0231.jpg
├── snap0232.jpg
├── snap0233.jpg
├── snap0234.jpg
├── snap0235.jpg
├── snap0236.jpg
├── snap0237.jpg
├── snap0238.jpg
├── snap0239.jpg
├── snap0240.jpg
├── snap0241.jpg
└── snap0242.jpg
├── imitatedgame
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ ├── MyContactListener.cpp
│ └── MyContactListener.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── HelloWorld.png
│ ├── Icon-72.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon.png
│ ├── Icon@2x.png
│ ├── acorn-hd.png
│ ├── acorn.png
│ ├── bg-hd.png
│ ├── bg.png
│ ├── blocks.png
│ ├── brick_1-hd.png
│ ├── brick_1.png
│ ├── brick_2-hd.png
│ ├── brick_2.png
│ ├── brick_3-hd.png
│ ├── brick_3.png
│ ├── brick_platform-hd.png
│ ├── brick_platform.png
│ ├── catapult_arm-hd.png
│ ├── catapult_arm.png
│ ├── catapult_base_1-hd.png
│ ├── catapult_base_1.png
│ ├── catapult_base_2-hd.png
│ ├── catapult_base_2.png
│ ├── catapult_cup-hd.png
│ ├── catapult_cup.png
│ ├── fg-hd.png
│ ├── fg.png
│ ├── fire.png
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── head_cat-hd.png
│ ├── head_cat.png
│ ├── head_dog-hd.png
│ ├── head_dog.png
│ ├── squirrel_1-hd.png
│ ├── squirrel_1.png
│ ├── squirrel_2-hd.png
│ └── squirrel_2.png
├── proj.android
│ ├── .classpath
│ ├── .cproject
│ ├── .project
│ ├── .settings
│ │ └── org.eclipse.jdt.core.prefs
│ ├── AndroidManifest.xml
│ ├── README.md
│ ├── ant.properties
│ ├── bin
│ │ ├── AndroidManifest.xml
│ │ ├── classes
│ │ │ ├── com
│ │ │ │ └── future
│ │ │ │ │ └── game
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ └── imitatedgame.class
│ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── lib
│ │ │ │ ├── Cocos2dxAccelerometer.class
│ │ │ │ ├── Cocos2dxActivity.class
│ │ │ │ ├── Cocos2dxBitmap$TextProperty.class
│ │ │ │ ├── Cocos2dxBitmap.class
│ │ │ │ ├── Cocos2dxETCLoader.class
│ │ │ │ ├── Cocos2dxEditBoxDialog$1.class
│ │ │ │ ├── Cocos2dxEditBoxDialog$2.class
│ │ │ │ ├── Cocos2dxEditBoxDialog.class
│ │ │ │ ├── Cocos2dxEditText.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$1.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$10.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$11.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$12.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$13.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$2.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$3.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$4.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$5.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$6.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$7.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$8.class
│ │ │ │ ├── Cocos2dxGLSurfaceView$9.class
│ │ │ │ ├── Cocos2dxGLSurfaceView.class
│ │ │ │ ├── Cocos2dxHandler$1.class
│ │ │ │ ├── Cocos2dxHandler$DialogMessage.class
│ │ │ │ ├── Cocos2dxHandler$EditBoxMessage.class
│ │ │ │ ├── Cocos2dxHandler.class
│ │ │ │ ├── Cocos2dxHelper$1.class
│ │ │ │ ├── Cocos2dxHelper$Cocos2dxHelperListener.class
│ │ │ │ ├── Cocos2dxHelper.class
│ │ │ │ ├── Cocos2dxLocalStorage$DBOpenHelper.class
│ │ │ │ ├── Cocos2dxLocalStorage.class
│ │ │ │ ├── Cocos2dxMusic.class
│ │ │ │ ├── Cocos2dxRenderer.class
│ │ │ │ ├── Cocos2dxSound$OnLoadCompletedListener.class
│ │ │ │ ├── Cocos2dxSound$SoundInfoForLoadedCompleted.class
│ │ │ │ ├── Cocos2dxSound.class
│ │ │ │ ├── Cocos2dxTextInputWraper.class
│ │ │ │ └── Cocos2dxTypefaces.class
│ │ └── jarlist.cache
│ ├── build.xml
│ ├── build_native.sh
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ │ └── main.cpp
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ └── values
│ │ │ └── strings.xml
│ └── src
│ │ └── com
│ │ └── future
│ │ └── game
│ │ └── imitatedgame.java
└── proj.win32
│ ├── imitatedgame.sln
│ ├── imitatedgame.vcxproj
│ ├── imitatedgame.vcxproj.filters
│ ├── imitatedgame.vcxproj.user
│ ├── main.cpp
│ └── main.h
├── jsonex
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── HelloWorldScene.cpp
│ ├── HelloWorldScene.h
│ └── rapidjson
│ │ ├── document.h
│ │ ├── filestream.h
│ │ ├── internal
│ │ ├── pow10.h
│ │ ├── stack.h
│ │ └── strfunc.h
│ │ ├── prettywriter.h
│ │ ├── rapidjson.h
│ │ ├── reader.h
│ │ ├── stringbuffer.h
│ │ └── writer.h
├── Resources
│ ├── CloseNormal.png
│ ├── CloseSelected.png
│ ├── Default.png
│ ├── HelloWorld.png
│ ├── Icon-72.png
│ ├── Icon-Small-50.png
│ ├── Icon-Small.png
│ ├── Icon-Small@2x.png
│ ├── Icon.png
│ ├── Icon@2x.png
│ ├── Info.plist
│ ├── data
│ │ └── test_data.json
│ └── iTunesArtwork
└── proj.win32
│ ├── jsonex.sln
│ ├── jsonex.vcxproj
│ ├── jsonex.vcxproj.filters
│ ├── jsonex.vcxproj.user
│ ├── main.cpp
│ └── main.h
└── moles
├── Classes
├── AppDelegate.cpp
├── AppDelegate.h
├── IntroLayer.cpp
├── IntroLayer.h
├── MenuLayer.cpp
├── MenuLayer.h
├── Mole.cpp
├── Mole.h
├── MoleHill.cpp
├── MoleHill.h
├── PlayFieldLayer.cpp
└── PlayFieldLayer.h
├── Resources
├── CloseNormal.png
├── CloseSelected.png
├── Default-Landscape~ipad.png
├── Default.png
├── Default@2x.png
├── HelloWorld.png
├── Icon-72.png
├── Icon-Small-50.png
├── Icon-Small.png
├── Icon-Small@2x.png
├── Icon.png
├── Icon@2x.png
├── Info.plist
├── audio
│ ├── button.caf
│ ├── penguin_call.caf
│ └── penguin_call_echo.caf
├── fonts
│ ├── Nyek! License.txt
│ └── anudrg.ttf
├── fps_images-hd.png
├── fps_images-ipadhd.png
├── fps_images.png
├── iTunesArtwork
├── molesheet-hd.plist
├── molesheet-hd.png
├── molesheet.plist
├── molesheet.png
├── timer-hd.png
├── timer.png
├── timer_back-hd.png
└── timer_back.png
└── proj.win32
├── main.cpp
├── main.h
├── moles.sln
├── moles.vcxproj
├── moles.vcxproj.filters
└── moles.vcxproj.user
/AnimationSprite/Resources/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/AnimationSprite/Resources/CloseNormal.png
--------------------------------------------------------------------------------
/AnimationSprite/Resources/CloseSelected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/AnimationSprite/Resources/CloseSelected.png
--------------------------------------------------------------------------------
/AnimationSprite/Resources/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/AnimationSprite/Resources/HelloWorld.png
--------------------------------------------------------------------------------
/AnimationSprite/Resources/eurostile_30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/AnimationSprite/Resources/eurostile_30.png
--------------------------------------------------------------------------------
/AnimationSprite/Resources/fps_images.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/AnimationSprite/Resources/fps_images.png
--------------------------------------------------------------------------------
/AnimationSprite/Resources/simple_bat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/AnimationSprite/Resources/simple_bat.png
--------------------------------------------------------------------------------
/AnimationSprite/proj.android/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := gnustl_static
2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1
3 |
--------------------------------------------------------------------------------
/BallonRide/Resources/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BallonRide/Resources/CloseNormal.png
--------------------------------------------------------------------------------
/BallonRide/Resources/CloseSelected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BallonRide/Resources/CloseSelected.png
--------------------------------------------------------------------------------
/BallonRide/Resources/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BallonRide/Resources/HelloWorld.png
--------------------------------------------------------------------------------
/BallonRide/Resources/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BallonRide/Resources/Icon.png
--------------------------------------------------------------------------------
/BallonRide/Resources/balloons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BallonRide/Resources/balloons.png
--------------------------------------------------------------------------------
/BallonRide/Resources/bg_duplicate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BallonRide/Resources/bg_duplicate.png
--------------------------------------------------------------------------------
/BallonRide/Resources/fonts/Marker Felt.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BallonRide/Resources/fonts/Marker Felt.ttf
--------------------------------------------------------------------------------
/BallonRide/Resources/plane.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BallonRide/Resources/plane.png
--------------------------------------------------------------------------------
/BallonRide/Resources/twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BallonRide/Resources/twitter.png
--------------------------------------------------------------------------------
/BallonRide/proj.android/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := gnustl_static
2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1
3 |
--------------------------------------------------------------------------------
/BallonRide/proj.android/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | BallonRide
4 |
5 |
--------------------------------------------------------------------------------
/BilliardGame/Resources/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/CloseNormal.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/CloseSelected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/CloseSelected.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/Default.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/HelloWorld.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/Icon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/Icon-72.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/Icon-Small-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/Icon-Small-50.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/Icon.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/Icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/Icon@2x.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/ball.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/ball.wav
--------------------------------------------------------------------------------
/BilliardGame/Resources/drop.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/drop.wav
--------------------------------------------------------------------------------
/BilliardGame/Resources/hit.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/hit.wav
--------------------------------------------------------------------------------
/BilliardGame/Resources/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/iTunesArtwork
--------------------------------------------------------------------------------
/BilliardGame/Resources/ipad/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/ipad/bg.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/ipad/font.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/ipad/font.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/ipadhd/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/ipadhd/bg.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/ipadhd/font.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/ipadhd/font.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/iphone/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/iphone/bg.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/iphone/font.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/iphone/font.png
--------------------------------------------------------------------------------
/BilliardGame/Resources/whitedrop.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/Resources/whitedrop.wav
--------------------------------------------------------------------------------
/BilliardGame/proj.android/assets/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/proj.android/assets/Icon.png
--------------------------------------------------------------------------------
/BilliardGame/proj.android/assets/ball.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/proj.android/assets/ball.wav
--------------------------------------------------------------------------------
/BilliardGame/proj.android/assets/drop.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/proj.android/assets/drop.wav
--------------------------------------------------------------------------------
/BilliardGame/proj.android/assets/hit.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BilliardGame/proj.android/assets/hit.wav
--------------------------------------------------------------------------------
/BilliardGame/proj.android/builder.bat:
--------------------------------------------------------------------------------
1 | rmdir /s /q "assets"
2 | mkdir assets
3 | cd..
4 | xcopy Resources proj.android\assets /e /q
--------------------------------------------------------------------------------
/BilliardGame/proj.android/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := gnustl_static
2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1
3 |
--------------------------------------------------------------------------------
/BilliardGame/proj.android/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | BilliardGame
4 |
5 |
--------------------------------------------------------------------------------
/Box2dSample/Resources/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/CloseNormal.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/CloseSelected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/CloseSelected.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/Default.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/HelloWorld.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/Icon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/Icon-72.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/Icon-Small-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/Icon-Small-50.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/Icon.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/Icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/Icon@2x.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/blocks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/blocks.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/drink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/drink.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/fonts/Marker Felt.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/fonts/Marker Felt.ttf
--------------------------------------------------------------------------------
/Box2dSample/Resources/hamburger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/hamburger.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/hotdog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/hotdog.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/iTunesArtwork
--------------------------------------------------------------------------------
/Box2dSample/Resources/icecream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/icecream.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/icecream2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/icecream2.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/icecream3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/icecream3.png
--------------------------------------------------------------------------------
/Box2dSample/Resources/orange.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Box2dSample/Resources/orange.png
--------------------------------------------------------------------------------
/Box2dSample/proj.android/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := gnustl_static
2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1
3 |
--------------------------------------------------------------------------------
/Box2dSample/proj.android/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Box2dSample
4 |
5 |
--------------------------------------------------------------------------------
/BreakOut/Resources/Ball.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/Ball.jpg
--------------------------------------------------------------------------------
/BreakOut/Resources/Block.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/Block.jpg
--------------------------------------------------------------------------------
/BreakOut/Resources/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/CloseNormal.png
--------------------------------------------------------------------------------
/BreakOut/Resources/CloseSelected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/CloseSelected.png
--------------------------------------------------------------------------------
/BreakOut/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/Default.png
--------------------------------------------------------------------------------
/BreakOut/Resources/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/HelloWorld.png
--------------------------------------------------------------------------------
/BreakOut/Resources/Icon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/Icon-72.png
--------------------------------------------------------------------------------
/BreakOut/Resources/Icon-Small-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/Icon-Small-50.png
--------------------------------------------------------------------------------
/BreakOut/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/BreakOut/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/BreakOut/Resources/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/Icon.png
--------------------------------------------------------------------------------
/BreakOut/Resources/Icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/Icon@2x.png
--------------------------------------------------------------------------------
/BreakOut/Resources/Paddle.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/Paddle.jpg
--------------------------------------------------------------------------------
/BreakOut/Resources/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/Thumbs.db
--------------------------------------------------------------------------------
/BreakOut/Resources/background-music-aac.caf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/background-music-aac.caf
--------------------------------------------------------------------------------
/BreakOut/Resources/blip.caf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/blip.caf
--------------------------------------------------------------------------------
/BreakOut/Resources/blocks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/blocks.png
--------------------------------------------------------------------------------
/BreakOut/Resources/fonts/Marker Felt.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BreakOut/Resources/fonts/Marker Felt.ttf
--------------------------------------------------------------------------------
/BreakOut/proj.android/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := gnustl_static
2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1
3 |
--------------------------------------------------------------------------------
/BreakOut/proj.android/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | BreakOut
4 |
5 |
--------------------------------------------------------------------------------
/BrickGame/Resources/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BrickGame/Resources/CloseNormal.png
--------------------------------------------------------------------------------
/BrickGame/Resources/CloseSelected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BrickGame/Resources/CloseSelected.png
--------------------------------------------------------------------------------
/BrickGame/Resources/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BrickGame/Resources/HelloWorld.png
--------------------------------------------------------------------------------
/BrickGame/Resources/fonts/Marker Felt.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/BrickGame/Resources/fonts/Marker Felt.ttf
--------------------------------------------------------------------------------
/BrickGame/proj.android/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := gnustl_static
2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 -std=c++11 -fsigned-char
3 |
--------------------------------------------------------------------------------
/BrickGame/proj.android/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | BrickGame
4 |
5 |
--------------------------------------------------------------------------------
/ColoringSprite/Resources/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ColoringSprite/Resources/CloseNormal.png
--------------------------------------------------------------------------------
/ColoringSprite/Resources/CloseSelected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ColoringSprite/Resources/CloseSelected.png
--------------------------------------------------------------------------------
/ColoringSprite/Resources/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ColoringSprite/Resources/HelloWorld.png
--------------------------------------------------------------------------------
/ColoringSprite/Resources/blank.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ColoringSprite/Resources/blank.png
--------------------------------------------------------------------------------
/ColoringSprite/Resources/fire.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ColoringSprite/Resources/fire.png
--------------------------------------------------------------------------------
/ColoringSprite/Resources/fps_images.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ColoringSprite/Resources/fps_images.png
--------------------------------------------------------------------------------
/ColoringSprite/Resources/samurai_evil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ColoringSprite/Resources/samurai_evil.png
--------------------------------------------------------------------------------
/ColoringSprite/Resources/samurai_good.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ColoringSprite/Resources/samurai_good.png
--------------------------------------------------------------------------------
/ColoringSprite/proj.android/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := gnustl_static
2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1
3 |
--------------------------------------------------------------------------------
/EditboxEx/Resources/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/EditboxEx/Resources/CloseNormal.png
--------------------------------------------------------------------------------
/EditboxEx/Resources/CloseSelected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/EditboxEx/Resources/CloseSelected.png
--------------------------------------------------------------------------------
/EditboxEx/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/EditboxEx/Resources/Default.png
--------------------------------------------------------------------------------
/EditboxEx/Resources/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/EditboxEx/Resources/HelloWorld.png
--------------------------------------------------------------------------------
/EditboxEx/Resources/Icon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/EditboxEx/Resources/Icon-72.png
--------------------------------------------------------------------------------
/EditboxEx/Resources/Icon-Small-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/EditboxEx/Resources/Icon-Small-50.png
--------------------------------------------------------------------------------
/EditboxEx/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/EditboxEx/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/EditboxEx/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/EditboxEx/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/EditboxEx/Resources/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/EditboxEx/Resources/Icon.png
--------------------------------------------------------------------------------
/EditboxEx/Resources/Icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/EditboxEx/Resources/Icon@2x.png
--------------------------------------------------------------------------------
/EditboxEx/Resources/fonts/Marker Felt.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/EditboxEx/Resources/fonts/Marker Felt.ttf
--------------------------------------------------------------------------------
/EditboxEx/Resources/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/EditboxEx/Resources/iTunesArtwork
--------------------------------------------------------------------------------
/EditboxEx/proj.android/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := gnustl_static
2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1
3 |
--------------------------------------------------------------------------------
/EditboxEx/proj.android/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | EditboxEx
4 |
5 |
--------------------------------------------------------------------------------
/Eskimo/Resources/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/CloseNormal.png
--------------------------------------------------------------------------------
/Eskimo/Resources/CloseSelected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/CloseSelected.png
--------------------------------------------------------------------------------
/Eskimo/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/Default.png
--------------------------------------------------------------------------------
/Eskimo/Resources/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/HelloWorld.png
--------------------------------------------------------------------------------
/Eskimo/Resources/Icon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/Icon-72.png
--------------------------------------------------------------------------------
/Eskimo/Resources/Icon-Small-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/Icon-Small-50.png
--------------------------------------------------------------------------------
/Eskimo/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/Eskimo/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/Eskimo/Resources/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/Icon.png
--------------------------------------------------------------------------------
/Eskimo/Resources/Icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/Icon@2x.png
--------------------------------------------------------------------------------
/Eskimo/Resources/background.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/background.mp3
--------------------------------------------------------------------------------
/Eskimo/Resources/button.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/button.wav
--------------------------------------------------------------------------------
/Eskimo/Resources/cap.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/cap.wav
--------------------------------------------------------------------------------
/Eskimo/Resources/fonts/Marker Felt.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/fonts/Marker Felt.ttf
--------------------------------------------------------------------------------
/Eskimo/Resources/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/iTunesArtwork
--------------------------------------------------------------------------------
/Eskimo/Resources/igloo.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/igloo.wav
--------------------------------------------------------------------------------
/Eskimo/Resources/ipad/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/ipad/bg.jpg
--------------------------------------------------------------------------------
/Eskimo/Resources/ipad/font_levels.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/ipad/font_levels.png
--------------------------------------------------------------------------------
/Eskimo/Resources/ipad/font_messages.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/ipad/font_messages.png
--------------------------------------------------------------------------------
/Eskimo/Resources/ipad/sprite_sheet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/ipad/sprite_sheet.png
--------------------------------------------------------------------------------
/Eskimo/Resources/ipadhd/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/ipadhd/bg.jpg
--------------------------------------------------------------------------------
/Eskimo/Resources/ipadhd/font_levels.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/ipadhd/font_levels.png
--------------------------------------------------------------------------------
/Eskimo/Resources/ipadhd/font_messages.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/ipadhd/font_messages.png
--------------------------------------------------------------------------------
/Eskimo/Resources/ipadhd/sprite_sheet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/ipadhd/sprite_sheet.png
--------------------------------------------------------------------------------
/Eskimo/Resources/iphone/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/iphone/bg.jpg
--------------------------------------------------------------------------------
/Eskimo/Resources/iphone/font_levels.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/iphone/font_levels.png
--------------------------------------------------------------------------------
/Eskimo/Resources/iphone/font_messages.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/iphone/font_messages.png
--------------------------------------------------------------------------------
/Eskimo/Resources/iphone/sprite_sheet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/iphone/sprite_sheet.png
--------------------------------------------------------------------------------
/Eskimo/Resources/oops.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/oops.wav
--------------------------------------------------------------------------------
/Eskimo/Resources/shape.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/shape.wav
--------------------------------------------------------------------------------
/Eskimo/Resources/switch.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/Resources/switch.wav
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/CloseNormal.png
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/Default.png
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/HelloWorld.png
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/Icon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/Icon-72.png
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/Icon-Small.png
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/Icon.png
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/Icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/Icon@2x.png
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/background.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/background.mp3
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/button.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/button.wav
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/cap.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/cap.wav
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/iTunesArtwork
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/igloo.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/igloo.wav
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/ipad/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/ipad/bg.jpg
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/ipadhd/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/ipadhd/bg.jpg
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/iphone/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/iphone/bg.jpg
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/oops.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/oops.wav
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/shape.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/shape.wav
--------------------------------------------------------------------------------
/Eskimo/proj.android/assets/switch.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Eskimo/proj.android/assets/switch.wav
--------------------------------------------------------------------------------
/Eskimo/proj.android/builder.bat:
--------------------------------------------------------------------------------
1 | rmdir /s /q "assets"
2 | mkdir assets
3 | cd..
4 | xcopy Resources proj.android\assets /e /q
--------------------------------------------------------------------------------
/Eskimo/proj.android/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := gnustl_static
2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1
3 |
--------------------------------------------------------------------------------
/Eskimo/proj.android/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Eskimo
4 |
5 |
--------------------------------------------------------------------------------
/HulkAction/Resources/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/CloseNormal.png
--------------------------------------------------------------------------------
/HulkAction/Resources/CloseSelected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/CloseSelected.png
--------------------------------------------------------------------------------
/HulkAction/Resources/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/HelloWorld.png
--------------------------------------------------------------------------------
/HulkAction/Resources/HulkActions.win32.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/HulkActions.win32.exe
--------------------------------------------------------------------------------
/HulkAction/Resources/HulkSavage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/HulkSavage.png
--------------------------------------------------------------------------------
/HulkAction/Resources/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/Thumbs.db
--------------------------------------------------------------------------------
/HulkAction/Resources/angrypunch.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/angrypunch.mp3
--------------------------------------------------------------------------------
/HulkAction/Resources/fistbutton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/fistbutton.png
--------------------------------------------------------------------------------
/HulkAction/Resources/fonts/Marker Felt.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/fonts/Marker Felt.ttf
--------------------------------------------------------------------------------
/HulkAction/Resources/glew32.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/glew32.dll
--------------------------------------------------------------------------------
/HulkAction/Resources/hulk_namaste/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/hulk_namaste/Thumbs.db
--------------------------------------------------------------------------------
/HulkAction/Resources/hulkmoves.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/hulkmoves.png
--------------------------------------------------------------------------------
/HulkAction/Resources/hulkpunch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/hulkpunch.png
--------------------------------------------------------------------------------
/HulkAction/Resources/hulkpunch.tps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/hulkpunch.tps
--------------------------------------------------------------------------------
/HulkAction/Resources/hulkstanding.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/hulkstanding.png
--------------------------------------------------------------------------------
/HulkAction/Resources/iconv.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/iconv.dll
--------------------------------------------------------------------------------
/HulkAction/Resources/libCocosDenshion.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/libCocosDenshion.dll
--------------------------------------------------------------------------------
/HulkAction/Resources/libcocos2d.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/libcocos2d.dll
--------------------------------------------------------------------------------
/HulkAction/Resources/libcurl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/libcurl.dll
--------------------------------------------------------------------------------
/HulkAction/Resources/libtiff.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/libtiff.dll
--------------------------------------------------------------------------------
/HulkAction/Resources/libxml2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/libxml2.dll
--------------------------------------------------------------------------------
/HulkAction/Resources/mozjs.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/mozjs.dll
--------------------------------------------------------------------------------
/HulkAction/Resources/namastebutton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/namastebutton.png
--------------------------------------------------------------------------------
/HulkAction/Resources/pthreadVCE2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/pthreadVCE2.dll
--------------------------------------------------------------------------------
/HulkAction/Resources/punchbutton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/punchbutton.png
--------------------------------------------------------------------------------
/HulkAction/Resources/streetbackground.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/streetbackground.jpg
--------------------------------------------------------------------------------
/HulkAction/Resources/throwbutton.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/throwbutton.png
--------------------------------------------------------------------------------
/HulkAction/Resources/zlib1.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/HulkAction/Resources/zlib1.dll
--------------------------------------------------------------------------------
/HulkAction/proj.android/bin/jarlist.cache:
--------------------------------------------------------------------------------
1 | # cache for current jar dependency. DO NOT EDIT.
2 | # format is
3 | # Encoding is UTF-8
4 |
--------------------------------------------------------------------------------
/HulkAction/proj.android/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := gnustl_static
2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1
3 |
--------------------------------------------------------------------------------
/HulkAction/proj.android/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | HulkAction
4 |
5 |
--------------------------------------------------------------------------------
/MagicalTree/Classes/GameLayer.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Classes/GameLayer.cpp
--------------------------------------------------------------------------------
/MagicalTree/Classes/MTCloud.cpp:
--------------------------------------------------------------------------------
1 | #include "MTCloud.h"
2 |
3 |
4 | MTCloud::MTCloud()
5 | {
6 | }
7 |
8 |
9 | MTCloud::~MTCloud()
10 | {
11 | }
12 |
--------------------------------------------------------------------------------
/MagicalTree/Classes/MTCloud.h:
--------------------------------------------------------------------------------
1 | #pragma once
2 | class MTCloud
3 | {
4 | public:
5 | MTCloud();
6 | virtual ~MTCloud();
7 | };
8 |
9 |
--------------------------------------------------------------------------------
/MagicalTree/Classes/MTPlatform.h:
--------------------------------------------------------------------------------
1 | #pragma once
2 | class MTPlatform
3 | {
4 | public:
5 | MTPlatform();
6 | virtual ~MTPlatform();
7 | };
8 |
9 |
--------------------------------------------------------------------------------
/MagicalTree/Classes/PlayerGround.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Classes/PlayerGround.cpp
--------------------------------------------------------------------------------
/MagicalTree/Classes/PlayerPlatform.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Classes/PlayerPlatform.cpp
--------------------------------------------------------------------------------
/MagicalTree/Resources/10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/10.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/100.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/5.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/50.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/CloseNormal.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/CloseSelected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/CloseSelected.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/HelloWorld.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/bg.jpg
--------------------------------------------------------------------------------
/MagicalTree/Resources/bg.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/bg.mp3
--------------------------------------------------------------------------------
/MagicalTree/Resources/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/bg.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/cloud1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/cloud1.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/cloud2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/cloud2.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/cloud3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/cloud3.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/fire.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/fire.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/flower.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/flower.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/font_levels.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/font_levels.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/font_messages.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/font_messages.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/fonts/Marker Felt.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/fonts/Marker Felt.ttf
--------------------------------------------------------------------------------
/MagicalTree/Resources/jump.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/jump.wav
--------------------------------------------------------------------------------
/MagicalTree/Resources/koalio_stand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/koalio_stand.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/kuwalio_stand-hd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/kuwalio_stand-hd.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/lightning_bolt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/lightning_bolt.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/lightning_glow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/lightning_glow.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/platform1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/platform1.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/platform2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/platform2.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/sprite_sheet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/sprite_sheet.png
--------------------------------------------------------------------------------
/MagicalTree/Resources/treetile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MagicalTree/Resources/treetile.png
--------------------------------------------------------------------------------
/MagicalTree/proj.android/builder.bat:
--------------------------------------------------------------------------------
1 | rmdir /s /q "assets"
2 | mkdir assets
3 | cd..
4 | xcopy Resources proj.android\assets /e /q
--------------------------------------------------------------------------------
/MagicalTree/proj.android/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := gnustl_static
2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1
3 |
--------------------------------------------------------------------------------
/MagicalTree/proj.android/lint.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/MagicalTree/proj.android/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | MagicalTree
4 |
5 |
--------------------------------------------------------------------------------
/MenuSample/Resources/CloseNormal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/CloseNormal.png
--------------------------------------------------------------------------------
/MenuSample/Resources/CloseSelected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/CloseSelected.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Default.png
--------------------------------------------------------------------------------
/MenuSample/Resources/HelloWorld.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/HelloWorld.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Help-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Help-0.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Help-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Help-1.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Icon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Icon-72.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Icon-Small-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Icon-Small-50.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Icon.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Icon@2x.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Option-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Option-0.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Option-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Option-1.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Play-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Play-0.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Play-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Play-1.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Quit-0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Quit-0.png
--------------------------------------------------------------------------------
/MenuSample/Resources/Quit-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/Quit-1.png
--------------------------------------------------------------------------------
/MenuSample/Resources/fonts/Marker Felt.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/fonts/Marker Felt.ttf
--------------------------------------------------------------------------------
/MenuSample/Resources/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/MenuSample/Resources/iTunesArtwork
--------------------------------------------------------------------------------
/MenuSample/proj.android/jni/Application.mk:
--------------------------------------------------------------------------------
1 | APP_STL := gnustl_static
2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1
3 |
--------------------------------------------------------------------------------
/MenuSample/proj.android/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | MenuSample
4 |
5 |
--------------------------------------------------------------------------------
/NewAsteroid/Resources/._SpaceFlier_sm_1.png:
--------------------------------------------------------------------------------
1 | &