├── .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 |  & PNGfMeSa -------------------------------------------------------------------------------- /NewAsteroid/Resources/._asteroid.png: -------------------------------------------------------------------------------- 1 |  & PNGfMeSa -------------------------------------------------------------------------------- /NewAsteroid/Resources/._laserbeam_blue.png: -------------------------------------------------------------------------------- 1 |  & PNGfMeSa -------------------------------------------------------------------------------- /NewAsteroid/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/CloseNormal.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/CloseSelected.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/Default.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/HelloWorld.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/Icon-72.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/Icon-Small-50.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/Icon-Small.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/Icon.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/Icon@2x.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/SpaceFlier_sm_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/SpaceFlier_sm_1.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/SpaceGame.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/SpaceGame.caf -------------------------------------------------------------------------------- /NewAsteroid/Resources/SpaceGame.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/SpaceGame.mp3 -------------------------------------------------------------------------------- /NewAsteroid/Resources/SpaceGame.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/SpaceGame.wav -------------------------------------------------------------------------------- /NewAsteroid/Resources/Sprites.pvr.ccz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/Sprites.pvr.ccz -------------------------------------------------------------------------------- /NewAsteroid/Resources/asteroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/asteroid.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/bg_galaxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/bg_galaxy.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/bg_planetsunrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/bg_planetsunrise.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/bg_spacialanomaly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/bg_spacialanomaly.png -------------------------------------------------------------------------------- /NewAsteroid/Resources/explosion_large.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/explosion_large.caf -------------------------------------------------------------------------------- /NewAsteroid/Resources/explosion_large.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/explosion_large.mp3 -------------------------------------------------------------------------------- /NewAsteroid/Resources/explosion_large.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/explosion_large.wav -------------------------------------------------------------------------------- /NewAsteroid/Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /NewAsteroid/Resources/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/iTunesArtwork -------------------------------------------------------------------------------- /NewAsteroid/Resources/laser_ship.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/laser_ship.caf -------------------------------------------------------------------------------- /NewAsteroid/Resources/laser_ship.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/laser_ship.mp3 -------------------------------------------------------------------------------- /NewAsteroid/Resources/laser_ship.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/laser_ship.wav -------------------------------------------------------------------------------- /NewAsteroid/Resources/laserbeam_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NewAsteroid/Resources/laserbeam_blue.png -------------------------------------------------------------------------------- /NewAsteroid/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /NewAsteroid/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | NewAsteroid 4 | 5 | -------------------------------------------------------------------------------- /NovelGame/Resources/013-PostTown01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/Resources/013-PostTown01.jpg -------------------------------------------------------------------------------- /NovelGame/Resources/017-MineTown01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/Resources/017-MineTown01.jpg -------------------------------------------------------------------------------- /NovelGame/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/Resources/CloseNormal.png -------------------------------------------------------------------------------- /NovelGame/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/Resources/CloseSelected.png -------------------------------------------------------------------------------- /NovelGame/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/Resources/HelloWorld.png -------------------------------------------------------------------------------- /NovelGame/Resources/actor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/Resources/actor1.png -------------------------------------------------------------------------------- /NovelGame/Resources/actor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/Resources/actor2.png -------------------------------------------------------------------------------- /NovelGame/Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /NovelGame/Resources/menu_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/Resources/menu_button.png -------------------------------------------------------------------------------- /NovelGame/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /NovelGame/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | NovelGame 4 | 5 | -------------------------------------------------------------------------------- /NovelGame/proj.blackberry/empty/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/proj.blackberry/empty/empty -------------------------------------------------------------------------------- /NovelGame/proj.blackberry/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/proj.blackberry/icon.png -------------------------------------------------------------------------------- /NovelGame/proj.ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/proj.ios/Default-568h@2x.png -------------------------------------------------------------------------------- /NovelGame/proj.ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/proj.ios/Default.png -------------------------------------------------------------------------------- /NovelGame/proj.ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/proj.ios/Default@2x.png -------------------------------------------------------------------------------- /NovelGame/proj.ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/proj.ios/Icon-114.png -------------------------------------------------------------------------------- /NovelGame/proj.ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/proj.ios/Icon-144.png -------------------------------------------------------------------------------- /NovelGame/proj.ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/proj.ios/Icon-57.png -------------------------------------------------------------------------------- /NovelGame/proj.ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/proj.ios/Icon-72.png -------------------------------------------------------------------------------- /NovelGame/proj.ios/RootViewController.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | @interface RootViewController : UIViewController { 5 | 6 | } 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /NovelGame/proj.mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/NovelGame/proj.mac/Icon.icns -------------------------------------------------------------------------------- /NovelGame/proj.mac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /NovelGame/proj.marmalade/src/Main.h: -------------------------------------------------------------------------------- 1 | #ifndef MAIN_H 2 | #define MAIN_H 3 | 4 | #endif 5 | -------------------------------------------------------------------------------- /ParallaxScroll/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ParallaxScroll/Resources/CloseNormal.png -------------------------------------------------------------------------------- /ParallaxScroll/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ParallaxScroll/Resources/CloseSelected.png -------------------------------------------------------------------------------- /ParallaxScroll/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ParallaxScroll/Resources/HelloWorld.png -------------------------------------------------------------------------------- /ParallaxScroll/Resources/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ParallaxScroll/Resources/clouds.png -------------------------------------------------------------------------------- /ParallaxScroll/Resources/land_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ParallaxScroll/Resources/land_green.png -------------------------------------------------------------------------------- /ParallaxScroll/Resources/land_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ParallaxScroll/Resources/land_grey.png -------------------------------------------------------------------------------- /ParallaxScroll/Resources/mountain_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ParallaxScroll/Resources/mountain_grey.png -------------------------------------------------------------------------------- /ParallaxScroll/Resources/sky_evening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ParallaxScroll/Resources/sky_evening.png -------------------------------------------------------------------------------- /ParallaxScroll/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /Parkour/Resources/Ground00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/Ground00.png -------------------------------------------------------------------------------- /Parkour/Resources/Ground01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/Ground01.png -------------------------------------------------------------------------------- /Parkour/Resources/MainBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/MainBG.png -------------------------------------------------------------------------------- /Parkour/Resources/Map00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/Map00.png -------------------------------------------------------------------------------- /Parkour/Resources/Map01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/Map01.png -------------------------------------------------------------------------------- /Parkour/Resources/background.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/background.wav -------------------------------------------------------------------------------- /Parkour/Resources/crouch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/crouch.wav -------------------------------------------------------------------------------- /Parkour/Resources/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/jump.wav -------------------------------------------------------------------------------- /Parkour/Resources/parkour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/parkour.png -------------------------------------------------------------------------------- /Parkour/Resources/pickup_coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/pickup_coin.wav -------------------------------------------------------------------------------- /Parkour/Resources/restart_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/restart_n.png -------------------------------------------------------------------------------- /Parkour/Resources/restart_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/restart_s.png -------------------------------------------------------------------------------- /Parkour/Resources/start_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/start_n.png -------------------------------------------------------------------------------- /Parkour/Resources/start_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/Parkour/Resources/start_s.png -------------------------------------------------------------------------------- /PixelCollison/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/PixelCollison/Resources/CloseNormal.png -------------------------------------------------------------------------------- /PixelCollison/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/PixelCollison/Resources/CloseSelected.png -------------------------------------------------------------------------------- /PixelCollison/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/PixelCollison/Resources/HelloWorld.png -------------------------------------------------------------------------------- /PixelCollison/Resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/PixelCollison/Resources/Thumbs.db -------------------------------------------------------------------------------- /PixelCollison/Resources/fps_images-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/PixelCollison/Resources/fps_images-hd.png -------------------------------------------------------------------------------- /PixelCollison/Resources/fps_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/PixelCollison/Resources/fps_images.png -------------------------------------------------------------------------------- /PixelCollison/Resources/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/PixelCollison/Resources/images/Thumbs.db -------------------------------------------------------------------------------- /PixelCollison/Resources/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/PixelCollison/Resources/images/bg.png -------------------------------------------------------------------------------- /PixelCollison/Resources/images/ship1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/PixelCollison/Resources/images/ship1.png -------------------------------------------------------------------------------- /PixelCollison/Resources/images/ship2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/PixelCollison/Resources/images/ship2.png -------------------------------------------------------------------------------- /PixelCollison/Resources/images/streak1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/PixelCollison/Resources/images/streak1.png -------------------------------------------------------------------------------- /PixelCollison/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/Noise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/Noise.jpg -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/Noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/Noise.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/Noise2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/Noise2.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/Noise3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/Noise3.jpg -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/Noise3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/Noise3.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/Noise4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/Noise4.jpg -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/Noise4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/Noise4.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/bg.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/bunker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/bunker.jpg -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/bunker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/bunker.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/fence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/fence.jpg -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/fence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/fence.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/fire.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/fire1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/fire1.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/fireart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/fireart.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/grass.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/jeep2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/jeep2.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/tree.jpg -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/tree1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/tree1.png -------------------------------------------------------------------------------- /RageofWar/Resources/Background1/tree2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Background1/tree2.jpg -------------------------------------------------------------------------------- /RageofWar/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/CloseNormal.png -------------------------------------------------------------------------------- /RageofWar/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/CloseSelected.png -------------------------------------------------------------------------------- /RageofWar/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/HelloWorld.png -------------------------------------------------------------------------------- /RageofWar/Resources/PlayerBody/Head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/PlayerBody/Head.png -------------------------------------------------------------------------------- /RageofWar/Resources/PlayerBody/Torso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/PlayerBody/Torso.png -------------------------------------------------------------------------------- /RageofWar/Resources/PlayerBody2/Head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/PlayerBody2/Head.png -------------------------------------------------------------------------------- /RageofWar/Resources/PlayerBody2/Torso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/PlayerBody2/Torso.png -------------------------------------------------------------------------------- /RageofWar/Resources/RageOfWar1.win32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/RageOfWar1.win32.exe -------------------------------------------------------------------------------- /RageofWar/Resources/Score/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Score/100.png -------------------------------------------------------------------------------- /RageofWar/Resources/Score/1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Score/1000.png -------------------------------------------------------------------------------- /RageofWar/Resources/Score/1000g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Score/1000g.png -------------------------------------------------------------------------------- /RageofWar/Resources/Score/100g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Score/100g.png -------------------------------------------------------------------------------- /RageofWar/Resources/Score/2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Score/2000.png -------------------------------------------------------------------------------- /RageofWar/Resources/Score/2000g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Score/2000g.png -------------------------------------------------------------------------------- /RageofWar/Resources/Score/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Score/500.png -------------------------------------------------------------------------------- /RageofWar/Resources/Score/5000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Score/5000.png -------------------------------------------------------------------------------- /RageofWar/Resources/Score/5000g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Score/5000g.png -------------------------------------------------------------------------------- /RageofWar/Resources/Score/500g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Score/500g.png -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/Campblast1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/Campblast1.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/Campblast2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/Campblast2.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/CircusMusic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/CircusMusic.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/DesertMode.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/DesertMode.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/FireBurning.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/FireBurning.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/GunFire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/GunFire.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/GunFirelong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/GunFirelong.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/Helicopter.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/Helicopter.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/Jeep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/Jeep.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/JeepBlast.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/JeepBlast.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/Level2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/Level2.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/Menu.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/Menu.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/ModernMode.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/ModernMode.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/Rifle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/Rifle.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/Winner.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/Winner.wav -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/alarm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/alarm.wav -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/barreta.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/barreta.wav -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/buttonclick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/buttonclick.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/clown.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/clown.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/defeat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/defeat.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/doublegun.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/doublegun.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/dying.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/dying.wav -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/enemydying.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/enemydying.wav -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/explosion.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/explosion.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/hit.wav -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/jumping.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/jumping.wav -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/powerup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/powerup.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/rayguntrans.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/rayguntrans.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/rock.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/rock.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/shotgun.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/shotgun.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/shotgun2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/shotgun2.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/shotgunlong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/shotgunlong.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/snipershot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/snipershot.wav -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/truck.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/truck.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/truckblast.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/truckblast.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/vehiclehit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/vehiclehit.wav -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/walking.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/walking.wav -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/won.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/won.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/Sound/wood.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/Sound/wood.mp3 -------------------------------------------------------------------------------- /RageofWar/Resources/SpriteImages/TNT1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/SpriteImages/TNT1.png -------------------------------------------------------------------------------- /RageofWar/Resources/SpriteImages/TNT2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/SpriteImages/TNT2.png -------------------------------------------------------------------------------- /RageofWar/Resources/SpriteImages/Wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/SpriteImages/Wood.png -------------------------------------------------------------------------------- /RageofWar/Resources/SpriteImages/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/SpriteImages/bg2.png -------------------------------------------------------------------------------- /RageofWar/Resources/SpriteImages/bg2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/SpriteImages/bg2x.png -------------------------------------------------------------------------------- /RageofWar/Resources/SpriteImages/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/SpriteImages/rock.png -------------------------------------------------------------------------------- /RageofWar/Resources/bgw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/bgw.png -------------------------------------------------------------------------------- /RageofWar/Resources/dpadDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/dpadDown.png -------------------------------------------------------------------------------- /RageofWar/Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /RageofWar/Resources/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/glew32.dll -------------------------------------------------------------------------------- /RageofWar/Resources/handDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/handDown.png -------------------------------------------------------------------------------- /RageofWar/Resources/handUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/handUp.png -------------------------------------------------------------------------------- /RageofWar/Resources/iconv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/iconv.dll -------------------------------------------------------------------------------- /RageofWar/Resources/joystickDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/joystickDown.png -------------------------------------------------------------------------------- /RageofWar/Resources/jumpDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/jumpDown.png -------------------------------------------------------------------------------- /RageofWar/Resources/jumpUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/jumpUp.png -------------------------------------------------------------------------------- /RageofWar/Resources/libCocosDenshion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/libCocosDenshion.dll -------------------------------------------------------------------------------- /RageofWar/Resources/libcocos2d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/libcocos2d.dll -------------------------------------------------------------------------------- /RageofWar/Resources/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/libcurl.dll -------------------------------------------------------------------------------- /RageofWar/Resources/libtiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/libtiff.dll -------------------------------------------------------------------------------- /RageofWar/Resources/libxml2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/libxml2.dll -------------------------------------------------------------------------------- /RageofWar/Resources/mozjs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/mozjs.dll -------------------------------------------------------------------------------- /RageofWar/Resources/pause button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/pause button.png -------------------------------------------------------------------------------- /RageofWar/Resources/play button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/play button.png -------------------------------------------------------------------------------- /RageofWar/Resources/plist1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/plist1.png -------------------------------------------------------------------------------- /RageofWar/Resources/plist2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/plist2.png -------------------------------------------------------------------------------- /RageofWar/Resources/pthreadVCE2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/pthreadVCE2.dll -------------------------------------------------------------------------------- /RageofWar/Resources/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RageofWar/Resources/zlib1.dll -------------------------------------------------------------------------------- /RageofWar/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /RageofWar/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | RageofWar 4 | 5 | -------------------------------------------------------------------------------- /RushHour/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/CloseNormal.png -------------------------------------------------------------------------------- /RushHour/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/CloseSelected.png -------------------------------------------------------------------------------- /RushHour/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/Default.png -------------------------------------------------------------------------------- /RushHour/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/HelloWorld.png -------------------------------------------------------------------------------- /RushHour/Resources/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/Icon-72.png -------------------------------------------------------------------------------- /RushHour/Resources/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/Icon-Small-50.png -------------------------------------------------------------------------------- /RushHour/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/Icon-Small.png -------------------------------------------------------------------------------- /RushHour/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /RushHour/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/Icon.png -------------------------------------------------------------------------------- /RushHour/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/Icon@2x.png -------------------------------------------------------------------------------- /RushHour/Resources/background.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/background.mp3 -------------------------------------------------------------------------------- /RushHour/Resources/crashing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/crashing.wav -------------------------------------------------------------------------------- /RushHour/Resources/falling.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/falling.wav -------------------------------------------------------------------------------- /RushHour/Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /RushHour/Resources/hitBuilding.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/hitBuilding.wav -------------------------------------------------------------------------------- /RushHour/Resources/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/iTunesArtwork -------------------------------------------------------------------------------- /RushHour/Resources/ipad/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/ipad/bg.png -------------------------------------------------------------------------------- /RushHour/Resources/ipad/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/ipad/font.png -------------------------------------------------------------------------------- /RushHour/Resources/ipad/sprite_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/ipad/sprite_sheet.png -------------------------------------------------------------------------------- /RushHour/Resources/ipadhd/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/ipadhd/bg.png -------------------------------------------------------------------------------- /RushHour/Resources/ipadhd/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/ipadhd/font.png -------------------------------------------------------------------------------- /RushHour/Resources/iphone/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/iphone/bg.png -------------------------------------------------------------------------------- /RushHour/Resources/iphone/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/iphone/font.png -------------------------------------------------------------------------------- /RushHour/Resources/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/jump.wav -------------------------------------------------------------------------------- /RushHour/Resources/openUmbrella.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/openUmbrella.wav -------------------------------------------------------------------------------- /RushHour/Resources/start.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/RushHour/Resources/start.wav -------------------------------------------------------------------------------- /RushHour/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /RushHour/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | RushHour 4 | 5 | -------------------------------------------------------------------------------- /ScrollView/Classes/GalleryLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ScrollView/Classes/GalleryLayer.h -------------------------------------------------------------------------------- /ScrollView/Classes/ListViewLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ScrollView/Classes/ListViewLayer.h -------------------------------------------------------------------------------- /ScrollView/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ScrollView/Resources/CloseNormal.png -------------------------------------------------------------------------------- /ScrollView/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ScrollView/Resources/CloseSelected.png -------------------------------------------------------------------------------- /ScrollView/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ScrollView/Resources/HelloWorld.png -------------------------------------------------------------------------------- /ScrollView/Resources/bg_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ScrollView/Resources/bg_01.png -------------------------------------------------------------------------------- /ScrollView/Resources/bg_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ScrollView/Resources/bg_02.png -------------------------------------------------------------------------------- /ScrollView/Resources/bg_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ScrollView/Resources/bg_03.png -------------------------------------------------------------------------------- /ScrollView/Resources/button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ScrollView/Resources/button_normal.png -------------------------------------------------------------------------------- /ScrollView/Resources/button_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ScrollView/Resources/button_selected.png -------------------------------------------------------------------------------- /ScrollView/Resources/listitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ScrollView/Resources/listitem.png -------------------------------------------------------------------------------- /ScrollView/Resources/listitem2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/ScrollView/Resources/listitem2.png -------------------------------------------------------------------------------- /ScrollView/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /SpaceFighter/Classes/LogoScene.cpp: -------------------------------------------------------------------------------- 1 | #include "LogoScene.h" 2 | 3 | 4 | LogoScene::LogoScene(void) 5 | { 6 | CCScene::init(); 7 | } 8 | -------------------------------------------------------------------------------- /SpaceFighter/Resources/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/4.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/CloseNormal.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/CloseSelected.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/Default.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/HelloWorld.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/Icon-72.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/Icon-Small-50.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/Icon-Small.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/Icon.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/Icon@2x.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/Mountain2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/Mountain2.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/StartGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/StartGame.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/StartGame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/StartGame2.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/Thumbs.db -------------------------------------------------------------------------------- /SpaceFighter/Resources/Universe.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/Universe.PNG -------------------------------------------------------------------------------- /SpaceFighter/Resources/asteroid-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/asteroid-large.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/asteroid-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/asteroid-small.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/bullet.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/exp0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/exp0.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/exp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/exp1.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/exp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/exp2.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/exp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/exp3.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/exp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/exp4.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/exp5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/exp5.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/exp6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/exp6.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/exp7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/exp7.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/explosion.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/land_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/land_green.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/laserbeam_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/laserbeam_blue.png -------------------------------------------------------------------------------- /SpaceFighter/Resources/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SpaceFighter/Resources/ship.png -------------------------------------------------------------------------------- /SpaceFighter/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /SuperKoalio/Resources/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/10.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/100.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/5.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/50.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/CloseNormal.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/CloseSelected.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/HelloWorld.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/bird.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/door_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/door_closed.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/door_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/door_open.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/fire.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/hurt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/hurt.wav -------------------------------------------------------------------------------- /SuperKoalio/Resources/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/jump.wav -------------------------------------------------------------------------------- /SuperKoalio/Resources/koalio_stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/koalio_stand.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/level1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/level1.mp3 -------------------------------------------------------------------------------- /SuperKoalio/Resources/replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/replay.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/snow.png -------------------------------------------------------------------------------- /SuperKoalio/Resources/tileSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/SuperKoalio/Resources/tileSet.png -------------------------------------------------------------------------------- /SuperKoalio/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /TextAdv/Classes/lua-5.1.4/doc/amazon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Classes/lua-5.1.4/doc/amazon.gif -------------------------------------------------------------------------------- /TextAdv/Classes/lua-5.1.4/doc/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Classes/lua-5.1.4/doc/cover.png -------------------------------------------------------------------------------- /TextAdv/Classes/lua-5.1.4/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Classes/lua-5.1.4/doc/logo.gif -------------------------------------------------------------------------------- /TextAdv/Classes/lua-5.1.4/etc/lua.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Classes/lua-5.1.4/etc/lua.ico -------------------------------------------------------------------------------- /TextAdv/Classes/lua-5.1.4/test/echo.lua: -------------------------------------------------------------------------------- 1 | -- echo command line arguments 2 | 3 | for i=0,table.getn(arg) do 4 | print(i,arg[i]) 5 | end 6 | -------------------------------------------------------------------------------- /TextAdv/Classes/lua-5.1.4/test/hello.lua: -------------------------------------------------------------------------------- 1 | -- the first program in every language 2 | 3 | io.write("Hello world, from ",_VERSION,"!\n") 4 | -------------------------------------------------------------------------------- /TextAdv/Classes/lua-5.1.4/test/life.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Classes/lua-5.1.4/test/life.lua -------------------------------------------------------------------------------- /TextAdv/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/CloseNormal.png -------------------------------------------------------------------------------- /TextAdv/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/CloseSelected.png -------------------------------------------------------------------------------- /TextAdv/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/HelloWorld.png -------------------------------------------------------------------------------- /TextAdv/Resources/big_louie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/big_louie.png -------------------------------------------------------------------------------- /TextAdv/Resources/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/blank.png -------------------------------------------------------------------------------- /TextAdv/Resources/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/bricks.png -------------------------------------------------------------------------------- /TextAdv/Resources/bricks2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/bricks2.png -------------------------------------------------------------------------------- /TextAdv/Resources/dialog_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/dialog_bg.png -------------------------------------------------------------------------------- /TextAdv/Resources/dpad_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/dpad_buttons.png -------------------------------------------------------------------------------- /TextAdv/Resources/end_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/end_button.png -------------------------------------------------------------------------------- /TextAdv/Resources/eurostile_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/eurostile_30.png -------------------------------------------------------------------------------- /TextAdv/Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /TextAdv/Resources/grass_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/grass_texture.png -------------------------------------------------------------------------------- /TextAdv/Resources/gridNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/gridNode.png -------------------------------------------------------------------------------- /TextAdv/Resources/gunman_darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/gunman_darkblue.png -------------------------------------------------------------------------------- /TextAdv/Resources/gunman_lightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/gunman_lightblue.png -------------------------------------------------------------------------------- /TextAdv/Resources/gunman_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/gunman_orange.png -------------------------------------------------------------------------------- /TextAdv/Resources/gunman_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/gunman_red.png -------------------------------------------------------------------------------- /TextAdv/Resources/red_button_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/red_button_0.png -------------------------------------------------------------------------------- /TextAdv/Resources/red_button_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/red_button_1.png -------------------------------------------------------------------------------- /TextAdv/Resources/start_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/start_button.png -------------------------------------------------------------------------------- /TextAdv/Resources/tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/tileset.png -------------------------------------------------------------------------------- /TextAdv/Resources/water_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/water_texture.png -------------------------------------------------------------------------------- /TextAdv/Resources/world_sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TextAdv/Resources/world_sprites.png -------------------------------------------------------------------------------- /TextAdv/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /TextAdv/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | HelloCpp 4 | 5 | -------------------------------------------------------------------------------- /TileMapEx4/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapEx4/Resources/CloseNormal.png -------------------------------------------------------------------------------- /TileMapEx4/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapEx4/Resources/CloseSelected.png -------------------------------------------------------------------------------- /TileMapEx4/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapEx4/Resources/Default.png -------------------------------------------------------------------------------- /TileMapEx4/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapEx4/Resources/HelloWorld.png -------------------------------------------------------------------------------- /TileMapEx4/Resources/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapEx4/Resources/Icon-72.png -------------------------------------------------------------------------------- /TileMapEx4/Resources/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapEx4/Resources/Icon-Small-50.png -------------------------------------------------------------------------------- /TileMapEx4/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapEx4/Resources/Icon-Small.png -------------------------------------------------------------------------------- /TileMapEx4/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapEx4/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /TileMapEx4/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapEx4/Resources/Icon.png -------------------------------------------------------------------------------- /TileMapEx4/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapEx4/Resources/Icon@2x.png -------------------------------------------------------------------------------- /TileMapEx4/Resources/TileMaps/metaset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapEx4/Resources/TileMaps/metaset.png -------------------------------------------------------------------------------- /TileMapEx4/Resources/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapEx4/Resources/iTunesArtwork -------------------------------------------------------------------------------- /TileMapEx4/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /TileMapTutorial/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapTutorial/Resources/CloseNormal.png -------------------------------------------------------------------------------- /TileMapTutorial/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapTutorial/Resources/Default.png -------------------------------------------------------------------------------- /TileMapTutorial/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapTutorial/Resources/HelloWorld.png -------------------------------------------------------------------------------- /TileMapTutorial/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapTutorial/Resources/Icon.png -------------------------------------------------------------------------------- /TileMapTutorial/Resources/Target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapTutorial/Resources/Target.png -------------------------------------------------------------------------------- /TileMapTutorial/Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapTutorial/Resources/background.png -------------------------------------------------------------------------------- /TileMapTutorial/Resources/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapTutorial/Resources/ball.png -------------------------------------------------------------------------------- /TileMapTutorial/Resources/fps_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TileMapTutorial/Resources/fps_images.png -------------------------------------------------------------------------------- /TileMapTutorial/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /TomTheTurret/Resources/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TomTheTurret/Resources/Images/Default.png -------------------------------------------------------------------------------- /TomTheTurret/Resources/Images/maleHit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TomTheTurret/Resources/Images/maleHit.wav -------------------------------------------------------------------------------- /TomTheTurret/Resources/Images/shoot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TomTheTurret/Resources/Images/shoot.wav -------------------------------------------------------------------------------- /TomTheTurret/Resources/Images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TomTheTurret/Resources/Images/sprites.png -------------------------------------------------------------------------------- /TowerDefense/Resources/Bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TowerDefense/Resources/Bg.png -------------------------------------------------------------------------------- /TowerDefense/Resources/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TowerDefense/Resources/bullet.png -------------------------------------------------------------------------------- /TowerDefense/Resources/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TowerDefense/Resources/enemy.png -------------------------------------------------------------------------------- /TowerDefense/Resources/font_red_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TowerDefense/Resources/font_red_14.png -------------------------------------------------------------------------------- /TowerDefense/Resources/laser_shoot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TowerDefense/Resources/laser_shoot.wav -------------------------------------------------------------------------------- /TowerDefense/Resources/life_lose.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TowerDefense/Resources/life_lose.wav -------------------------------------------------------------------------------- /TowerDefense/Resources/open_spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TowerDefense/Resources/open_spot.png -------------------------------------------------------------------------------- /TowerDefense/Resources/tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TowerDefense/Resources/tower.png -------------------------------------------------------------------------------- /TowerDefense/Resources/tower_place.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TowerDefense/Resources/tower_place.wav -------------------------------------------------------------------------------- /TweeJump/ProductionArt/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/10.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/100.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/5.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/50.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/Default.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/background.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/bird.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/bitmapFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/bitmapFont.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/cloud1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/cloud1.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/cloud2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/cloud2.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/cloud3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/cloud3.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/highscores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/highscores.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/icon.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/platform1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/platform1.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/platform2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/platform2.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/platform2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/platform2.xcf -------------------------------------------------------------------------------- /TweeJump/ProductionArt/sprites - Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/sprites - Copy.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/sprites.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/spritesheet.png -------------------------------------------------------------------------------- /TweeJump/ProductionArt/spritesheet.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/ProductionArt/spritesheet.tps -------------------------------------------------------------------------------- /TweeJump/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/Resources/CloseNormal.png -------------------------------------------------------------------------------- /TweeJump/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/Resources/CloseSelected.png -------------------------------------------------------------------------------- /TweeJump/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/Resources/HelloWorld.png -------------------------------------------------------------------------------- /TweeJump/Resources/Images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/Resources/Images/Thumbs.db -------------------------------------------------------------------------------- /TweeJump/Resources/Images/bitmapFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/Resources/Images/bitmapFont.png -------------------------------------------------------------------------------- /TweeJump/Resources/Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/Resources/Images/icon.png -------------------------------------------------------------------------------- /TweeJump/Resources/Images/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/Resources/Images/spritesheet.png -------------------------------------------------------------------------------- /TweeJump/Resources/fonts/Marker Felt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/Resources/fonts/Marker Felt.ttf -------------------------------------------------------------------------------- /TweeJump/Resources/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/TweeJump/Resources/spritesheet.png -------------------------------------------------------------------------------- /TweeJump/proj.android/builder.bat: -------------------------------------------------------------------------------- 1 | rmdir /s /q "assets" 2 | mkdir assets 3 | cd.. 4 | xcopy Resources proj.android\assets /e /q -------------------------------------------------------------------------------- /TweeJump/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /TweeJump/proj.android/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /TweeJump/proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | TweeJump 4 | 5 | -------------------------------------------------------------------------------- /img/snap0215.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0215.jpg -------------------------------------------------------------------------------- /img/snap0216.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0216.jpg -------------------------------------------------------------------------------- /img/snap0217.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0217.jpg -------------------------------------------------------------------------------- /img/snap0218.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0218.jpg -------------------------------------------------------------------------------- /img/snap0219.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0219.jpg -------------------------------------------------------------------------------- /img/snap0220.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0220.jpg -------------------------------------------------------------------------------- /img/snap0221.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0221.jpg -------------------------------------------------------------------------------- /img/snap0222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0222.jpg -------------------------------------------------------------------------------- /img/snap0223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0223.jpg -------------------------------------------------------------------------------- /img/snap0224.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0224.jpg -------------------------------------------------------------------------------- /img/snap0225.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0225.jpg -------------------------------------------------------------------------------- /img/snap0226.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0226.jpg -------------------------------------------------------------------------------- /img/snap0227.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0227.jpg -------------------------------------------------------------------------------- /img/snap0228.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0228.jpg -------------------------------------------------------------------------------- /img/snap0229.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0229.jpg -------------------------------------------------------------------------------- /img/snap0230.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0230.jpg -------------------------------------------------------------------------------- /img/snap0231.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0231.jpg -------------------------------------------------------------------------------- /img/snap0232.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0232.jpg -------------------------------------------------------------------------------- /img/snap0233.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0233.jpg -------------------------------------------------------------------------------- /img/snap0234.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0234.jpg -------------------------------------------------------------------------------- /img/snap0235.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0235.jpg -------------------------------------------------------------------------------- /img/snap0236.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0236.jpg -------------------------------------------------------------------------------- /img/snap0237.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0237.jpg -------------------------------------------------------------------------------- /img/snap0238.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0238.jpg -------------------------------------------------------------------------------- /img/snap0239.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0239.jpg -------------------------------------------------------------------------------- /img/snap0240.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0240.jpg -------------------------------------------------------------------------------- /img/snap0241.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0241.jpg -------------------------------------------------------------------------------- /img/snap0242.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/img/snap0242.jpg -------------------------------------------------------------------------------- /imitatedgame/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/CloseNormal.png -------------------------------------------------------------------------------- /imitatedgame/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/CloseSelected.png -------------------------------------------------------------------------------- /imitatedgame/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/Default.png -------------------------------------------------------------------------------- /imitatedgame/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/HelloWorld.png -------------------------------------------------------------------------------- /imitatedgame/Resources/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/Icon-72.png -------------------------------------------------------------------------------- /imitatedgame/Resources/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/Icon-Small-50.png -------------------------------------------------------------------------------- /imitatedgame/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/Icon-Small.png -------------------------------------------------------------------------------- /imitatedgame/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /imitatedgame/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/Icon.png -------------------------------------------------------------------------------- /imitatedgame/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/Icon@2x.png -------------------------------------------------------------------------------- /imitatedgame/Resources/acorn-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/acorn-hd.png -------------------------------------------------------------------------------- /imitatedgame/Resources/acorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/acorn.png -------------------------------------------------------------------------------- /imitatedgame/Resources/bg-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/bg-hd.png -------------------------------------------------------------------------------- /imitatedgame/Resources/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/bg.png -------------------------------------------------------------------------------- /imitatedgame/Resources/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/blocks.png -------------------------------------------------------------------------------- /imitatedgame/Resources/brick_1-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/brick_1-hd.png -------------------------------------------------------------------------------- /imitatedgame/Resources/brick_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/brick_1.png -------------------------------------------------------------------------------- /imitatedgame/Resources/brick_2-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/brick_2-hd.png -------------------------------------------------------------------------------- /imitatedgame/Resources/brick_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/brick_2.png -------------------------------------------------------------------------------- /imitatedgame/Resources/brick_3-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/brick_3-hd.png -------------------------------------------------------------------------------- /imitatedgame/Resources/brick_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/brick_3.png -------------------------------------------------------------------------------- /imitatedgame/Resources/brick_platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/brick_platform.png -------------------------------------------------------------------------------- /imitatedgame/Resources/catapult_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/catapult_arm.png -------------------------------------------------------------------------------- /imitatedgame/Resources/catapult_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/catapult_cup.png -------------------------------------------------------------------------------- /imitatedgame/Resources/fg-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/fg-hd.png -------------------------------------------------------------------------------- /imitatedgame/Resources/fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/fg.png -------------------------------------------------------------------------------- /imitatedgame/Resources/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/fire.png -------------------------------------------------------------------------------- /imitatedgame/Resources/head_cat-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/head_cat-hd.png -------------------------------------------------------------------------------- /imitatedgame/Resources/head_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/head_cat.png -------------------------------------------------------------------------------- /imitatedgame/Resources/head_dog-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/head_dog-hd.png -------------------------------------------------------------------------------- /imitatedgame/Resources/head_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/head_dog.png -------------------------------------------------------------------------------- /imitatedgame/Resources/squirrel_1-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/squirrel_1-hd.png -------------------------------------------------------------------------------- /imitatedgame/Resources/squirrel_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/squirrel_1.png -------------------------------------------------------------------------------- /imitatedgame/Resources/squirrel_2-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/squirrel_2-hd.png -------------------------------------------------------------------------------- /imitatedgame/Resources/squirrel_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/imitatedgame/Resources/squirrel_2.png -------------------------------------------------------------------------------- /imitatedgame/proj.android/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_STL := gnustl_static 2 | APP_CPPFLAGS := -frtti -DCC_ENABLE_CHIPMUNK_INTEGRATION=1 -DCOCOS2D_DEBUG=1 3 | -------------------------------------------------------------------------------- /jsonex/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/jsonex/Resources/CloseNormal.png -------------------------------------------------------------------------------- /jsonex/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/jsonex/Resources/CloseSelected.png -------------------------------------------------------------------------------- /jsonex/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/jsonex/Resources/Default.png -------------------------------------------------------------------------------- /jsonex/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/jsonex/Resources/HelloWorld.png -------------------------------------------------------------------------------- /jsonex/Resources/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/jsonex/Resources/Icon-72.png -------------------------------------------------------------------------------- /jsonex/Resources/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/jsonex/Resources/Icon-Small-50.png -------------------------------------------------------------------------------- /jsonex/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/jsonex/Resources/Icon-Small.png -------------------------------------------------------------------------------- /jsonex/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/jsonex/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /jsonex/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/jsonex/Resources/Icon.png -------------------------------------------------------------------------------- /jsonex/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/jsonex/Resources/Icon@2x.png -------------------------------------------------------------------------------- /jsonex/Resources/data/test_data.json: -------------------------------------------------------------------------------- 1 | { "hello" : "world", "t" : true , "f" : false, "n": null, "i":123, "pi": 3.1416, "a":[1, 2, 3, 4] } -------------------------------------------------------------------------------- /jsonex/Resources/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/jsonex/Resources/iTunesArtwork -------------------------------------------------------------------------------- /moles/Resources/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/CloseNormal.png -------------------------------------------------------------------------------- /moles/Resources/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/CloseSelected.png -------------------------------------------------------------------------------- /moles/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/Default.png -------------------------------------------------------------------------------- /moles/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/Default@2x.png -------------------------------------------------------------------------------- /moles/Resources/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/HelloWorld.png -------------------------------------------------------------------------------- /moles/Resources/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/Icon-72.png -------------------------------------------------------------------------------- /moles/Resources/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/Icon-Small-50.png -------------------------------------------------------------------------------- /moles/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/Icon-Small.png -------------------------------------------------------------------------------- /moles/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /moles/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/Icon.png -------------------------------------------------------------------------------- /moles/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/Icon@2x.png -------------------------------------------------------------------------------- /moles/Resources/audio/button.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/audio/button.caf -------------------------------------------------------------------------------- /moles/Resources/audio/penguin_call.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/audio/penguin_call.caf -------------------------------------------------------------------------------- /moles/Resources/fonts/anudrg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/fonts/anudrg.ttf -------------------------------------------------------------------------------- /moles/Resources/fps_images-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/fps_images-hd.png -------------------------------------------------------------------------------- /moles/Resources/fps_images-ipadhd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/fps_images-ipadhd.png -------------------------------------------------------------------------------- /moles/Resources/fps_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/fps_images.png -------------------------------------------------------------------------------- /moles/Resources/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/iTunesArtwork -------------------------------------------------------------------------------- /moles/Resources/molesheet-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/molesheet-hd.png -------------------------------------------------------------------------------- /moles/Resources/molesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/molesheet.png -------------------------------------------------------------------------------- /moles/Resources/timer-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/timer-hd.png -------------------------------------------------------------------------------- /moles/Resources/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/timer.png -------------------------------------------------------------------------------- /moles/Resources/timer_back-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/timer_back-hd.png -------------------------------------------------------------------------------- /moles/Resources/timer_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdpdds/cocos2dx-dev/89cf6f401089357433cb22e1a3b962cb8008c722/moles/Resources/timer_back.png --------------------------------------------------------------------------------