实例介绍
使用C++在cocos2d-x开发的俄罗斯方块,内含源码,可运行,并且已经生成android发布包,运行流畅,喜欢的可以下载学习。
【实例截图】
【核心代码】
4744300845184656798.7z
└── RussianBox
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── GameBackground.cpp
│ ├── GameBackground.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── proj.android
│ ├── AndroidManifest.xml
│ ├── ant.properties
│ ├── assets
│ │ ├── acdown.png
│ │ ├── b1.jpg
│ │ ├── b1.png
│ │ ├── b2.png
│ │ ├── bg.png
│ │ ├── boom1.png
│ │ ├── boom2.png
│ │ ├── boom3.png
│ │ ├── boom4.png
│ │ ├── boom5.png
│ │ ├── cat.png
│ │ ├── CloseNormal.png
│ │ ├── CloseSelected.png
│ │ ├── continueA.png
│ │ ├── continueB.png
│ │ ├── f1.png
│ │ ├── f2.jpg
│ │ ├── f2.png
│ │ ├── fonts
│ │ │ └── Marker Felt.ttf
│ │ ├── gameover.png
│ │ ├── HelloWorld.png
│ │ ├── newgameA.png
│ │ ├── newgameB.png
│ │ ├── node.png
│ │ ├── pause.png
│ │ ├── r1.png
│ │ ├── r2.png
│ │ ├── tb.png
│ │ └── transfer.png
│ ├── bin
│ │ ├── AndroidManifest.xml
│ │ ├── classes
│ │ │ ├── com
│ │ │ │ └── cocos2dx
│ │ │ │ └── org
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R.class
│ │ │ │ └── RussianBox.class
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── lib
│ │ │ ├── Cocos2dxAccelerometer.class
│ │ │ ├── Cocos2dxActivity.class
│ │ │ ├── Cocos2dxBitmap$TextProperty.class
│ │ │ ├── Cocos2dxBitmap.class
│ │ │ ├── Cocos2dxEditBoxDialog$1.class
│ │ │ ├── Cocos2dxEditBoxDialog$2.class
│ │ │ ├── Cocos2dxEditBoxDialog.class
│ │ │ ├── Cocos2dxEditText.class
│ │ │ ├── Cocos2dxETCLoader.class
│ │ │ ├── Cocos2dxGLSurfaceView$10.class
│ │ │ ├── Cocos2dxGLSurfaceView$11.class
│ │ │ ├── Cocos2dxGLSurfaceView$12.class
│ │ │ ├── Cocos2dxGLSurfaceView$13.class
│ │ │ ├── Cocos2dxGLSurfaceView$1.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
│ │ ├── classes.dex
│ │ ├── dexedLibs
│ │ │ └── annotations-68c8418622b97bd546a5fafcc3106437.jar
│ │ ├── jarlist.cache
│ │ ├── res
│ │ │ └── crunch
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── icon.png
│ │ │ └── drawable-mdpi
│ │ │ └── icon.png
│ │ ├── resources.ap_
│ │ └── RussianBox.apk
│ ├── build_native.sh
│ ├── build.xml
│ ├── gen
│ │ └── com
│ │ └── cocos2dx
│ │ └── org
│ │ ├── BuildConfig.java
│ │ └── R.java
│ ├── jni
│ │ ├── Android.mk
│ │ ├── Application.mk
│ │ └── hellocpp
│ │ └── main.cpp
│ ├── libs
│ │ └── armeabi
│ │ └── libcocos2dcpp.so
│ ├── lint.xml
│ ├── obj
│ │ └── local
│ │ └── armeabi
│ │ ├── libbox2d.a
│ │ ├── libchipmunk.a
│ │ ├── libcocos2d.a
│ │ ├── libcocos2dcpp.so
│ │ ├── libcocosdenshion.a
│ │ ├── libcpufeatures.a
│ │ ├── libextension.a
│ │ └── objs
│ │ ├── box2d_static
│ │ │ ├── Collision
│ │ │ │ ├── b2BroadPhase.o
│ │ │ │ ├── b2BroadPhase.o.d
│ │ │ │ ├── b2CollideCircle.o
│ │ │ │ ├── b2CollideCircle.o.d
│ │ │ │ ├── b2CollideEdge.o
│ │ │ │ ├── b2CollideEdge.o.d
│ │ │ │ ├── b2CollidePolygon.o
│ │ │ │ ├── b2CollidePolygon.o.d
│ │ │ │ ├── b2Collision.o
│ │ │ │ ├── b2Collision.o.d
│ │ │ │ ├── b2Distance.o
│ │ │ │ ├── b2Distance.o.d
│ │ │ │ ├── b2DynamicTree.o
│ │ │ │ ├── b2DynamicTree.o.d
│ │ │ │ ├── b2TimeOfImpact.o
│ │ │ │ ├── b2TimeOfImpact.o.d
│ │ │ │ └── Shapes
│ │ │ │ ├── b2ChainShape.o
│ │ │ │ ├── b2ChainShape.o.d
│ │ │ │ ├── b2CircleShape.o
│ │ │ │ ├── b2CircleShape.o.d
│ │ │ │ ├── b2EdgeShape.o
│ │ │ │ ├── b2EdgeShape.o.d
│ │ │ │ ├── b2PolygonShape.o
│ │ │ │ └── b2PolygonShape.o.d
│ │ │ ├── Common
│ │ │ │ ├── b2BlockAllocator.o
│ │ │ │ ├── b2BlockAllocator.o.d
│ │ │ │ ├── b2Draw.o
│ │ │ │ ├── b2Draw.o.d
│ │ │ │ ├── b2Math.o
│ │ │ │ ├── b2Math.o.d
│ │ │ │ ├── b2Settings.o
│ │ │ │ ├── b2Settings.o.d
│ │ │ │ ├── b2StackAllocator.o
│ │ │ │ ├── b2StackAllocator.o.d
│ │ │ │ ├── b2Timer.o
│ │ │ │ └── b2Timer.o.d
│ │ │ ├── Dynamics
│ │ │ │ ├── b2Body.o
│ │ │ │ ├── b2Body.o.d
│ │ │ │ ├── b2ContactManager.o
│ │ │ │ ├── b2ContactManager.o.d
│ │ │ │ ├── b2Fixture.o
│ │ │ │ ├── b2Fixture.o.d
│ │ │ │ ├── b2Island.o
│ │ │ │ ├── b2Island.o.d
│ │ │ │ ├── b2WorldCallbacks.o
│ │ │ │ ├── b2WorldCallbacks.o.d
│ │ │ │ ├── b2World.o
│ │ │ │ ├── b2World.o.d
│ │ │ │ ├── Contacts
│ │ │ │ │ ├── b2ChainAndCircleContact.o
│ │ │ │ │ ├── b2ChainAndCircleContact.o.d
│ │ │ │ │ ├── b2ChainAndPolygonContact.o
│ │ │ │ │ ├── b2ChainAndPolygonContact.o.d
│ │ │ │ │ ├── b2CircleContact.o
│ │ │ │ │ ├── b2CircleContact.o.d
│ │ │ │ │ ├── b2Contact.o
│ │ │ │ │ ├── b2Contact.o.d
│ │ │ │ │ ├── b2ContactSolver.o
│ │ │ │ │ ├── b2ContactSolver.o.d
│ │ │ │ │ ├── b2EdgeAndCircleContact.o
│ │ │ │ │ ├── b2EdgeAndCircleContact.o.d
│ │ │ │ │ ├── b2EdgeAndPolygonContact.o
│ │ │ │ │ ├── b2EdgeAndPolygonContact.o.d
│ │ │ │ │ ├── b2PolygonAndCircleContact.o
│ │ │ │ │ ├── b2PolygonAndCircleContact.o.d
│ │ │ │ │ ├── b2PolygonContact.o
│ │ │ │ │ └── b2PolygonContact.o.d
│ │ │ │ └── Joints
│ │ │ │ ├── b2DistanceJoint.o
│ │ │ │ ├── b2DistanceJoint.o.d
│ │ │ │ ├── b2FrictionJoint.o
│ │ │ │ ├── b2FrictionJoint.o.d
│ │ │ │ ├── b2GearJoint.o
│ │ │ │ ├── b2GearJoint.o.d
│ │ │ │ ├── b2Joint.o
│ │ │ │ ├── b2Joint.o.d
│ │ │ │ ├── b2MouseJoint.o
│ │ │ │ ├── b2MouseJoint.o.d
│ │ │ │ ├── b2PrismaticJoint.o
│ │ │ │ ├── b2PrismaticJoint.o.d
│ │ │ │ ├── b2PulleyJoint.o
│ │ │ │ ├── b2PulleyJoint.o.d
│ │ │ │ ├── b2RevoluteJoint.o
│ │ │ │ ├── b2RevoluteJoint.o.d
│ │ │ │ ├── b2RopeJoint.o
│ │ │ │ ├── b2RopeJoint.o.d
│ │ │ │ ├── b2WeldJoint.o
│ │ │ │ ├── b2WeldJoint.o.d
│ │ │ │ ├── b2WheelJoint.o
│ │ │ │ └── b2WheelJoint.o.d
│ │ │ └── Rope
│ │ │ ├── b2Rope.o
│ │ │ └── b2Rope.o.d
│ │ ├── chipmunk_static
│ │ │ └── src
│ │ │ ├── chipmunk.o
│ │ │ ├── chipmunk.o.d
│ │ │ ├── constraints
│ │ │ │ ├── cpConstraint.o
│ │ │ │ ├── cpConstraint.o.d
│ │ │ │ ├── cpDampedRotarySpring.o
│ │ │ │ ├── cpDampedRotarySpring.o.d
│ │ │ │ ├── cpDampedSpring.o
│ │ │ │ ├── cpDampedSpring.o.d
│ │ │ │ ├── cpGearJoint.o
│ │ │ │ ├── cpGearJoint.o.d
│ │ │ │ ├── cpGrooveJoint.o
│ │ │ │ ├── cpGrooveJoint.o.d
│ │ │ │ ├── cpPinJoint.o
│ │ │ │ ├── cpPinJoint.o.d
│ │ │ │ ├── cpPivotJoint.o
│ │ │ │ ├── cpPivotJoint.o.d
│ │ │ │ ├── cpRatchetJoint.o
│ │ │ │ ├── cpRatchetJoint.o.d
│ │ │ │ ├── cpRotaryLimitJoint.o
│ │ │ │ ├── cpRotaryLimitJoint.o.d
│ │ │ │ ├── cpSimpleMotor.o
│ │ │ │ ├── cpSimpleMotor.o.d
│ │ │ │ ├── cpSlideJoint.o
│ │ │ │ └── cpSlideJoint.o.d
│ │ │ ├── cpArbiter.o
│ │ │ ├── cpArbiter.o.d
│ │ │ ├── cpArray.o
│ │ │ ├── cpArray.o.d
│ │ │ ├── cpBB.o
│ │ │ ├── cpBB.o.d
│ │ │ ├── cpBBTree.o
│ │ │ ├── cpBBTree.o.d
│ │ │ ├── cpBody.o
│ │ │ ├── cpBody.o.d
│ │ │ ├── cpCollision.o
│ │ │ ├── cpCollision.o.d
│ │ │ ├── cpHashSet.o
│ │ │ ├── cpHashSet.o.d
│ │ │ ├── cpPolyShape.o
│ │ │ ├── cpPolyShape.o.d
│ │ │ ├── cpShape.o
│ │ │ ├── cpShape.o.d
│ │ │ ├── cpSpaceComponent.o
│ │ │ ├── cpSpaceComponent.o.d
│ │ │ ├── cpSpaceHash.o
│ │ │ ├── cpSpaceHash.o.d
│ │ │ ├── cpSpace.o
│ │ │ ├── cpSpace.o.d
│ │ │ ├── cpSpaceQuery.o
│ │ │ ├── cpSpaceQuery.o.d
│ │ │ ├── cpSpaceStep.o
│ │ │ ├── cpSpaceStep.o.d
│ │ │ ├── cpSpatialIndex.o
│ │ │ ├── cpSpatialIndex.o.d
│ │ │ ├── cpSweep1D.o
│ │ │ ├── cpSweep1D.o.d
│ │ │ ├── cpVect.o
│ │ │ └── cpVect.o.d
│ │ ├── cocos2dcpp_shared
│ │ │ ├── __
│ │ │ │ └── __
│ │ │ │ └── Classes
│ │ │ │ ├── AppDelegate.o
│ │ │ │ ├── AppDelegate.o.d
│ │ │ │ ├── GameBackground.o
│ │ │ │ ├── GameBackground.o.d
│ │ │ │ ├── HelloWorldScene.o
│ │ │ │ └── HelloWorldScene.o.d
│ │ │ └── hellocpp
│ │ │ ├── main.o
│ │ │ └── main.o.d
│ │ ├── cocos2dx_static
│ │ │ ├── actions
│ │ │ │ ├── CCActionCamera.o
│ │ │ │ ├── CCActionCamera.o.d
│ │ │ │ ├── CCActionCatmullRom.o
│ │ │ │ ├── CCActionCatmullRom.o.d
│ │ │ │ ├── CCActionEase.o
│ │ │ │ ├── CCActionEase.o.d
│ │ │ │ ├── CCActionGrid3D.o
│ │ │ │ ├── CCActionGrid3D.o.d
│ │ │ │ ├── CCActionGrid.o
│ │ │ │ ├── CCActionGrid.o.d
│ │ │ │ ├── CCActionInstant.o
│ │ │ │ ├── CCActionInstant.o.d
│ │ │ │ ├── CCActionInterval.o
│ │ │ │ ├── CCActionInterval.o.d
│ │ │ │ ├── CCActionManager.o
│ │ │ │ ├── CCActionManager.o.d
│ │ │ │ ├── CCAction.o
│ │ │ │ ├── CCAction.o.d
│ │ │ │ ├── CCActionPageTurn3D.o
│ │ │ │ ├── CCActionPageTurn3D.o.d
│ │ │ │ ├── CCActionProgressTimer.o
│ │ │ │ ├── CCActionProgressTimer.o.d
│ │ │ │ ├── CCActionTiledGrid.o
│ │ │ │ ├── CCActionTiledGrid.o.d
│ │ │ │ ├── CCActionTween.o
│ │ │ │ └── CCActionTween.o.d
│ │ │ ├── base_nodes
│ │ │ │ ├── CCAtlasNode.o
│ │ │ │ ├── CCAtlasNode.o.d
│ │ │ │ ├── CCNode.o
│ │ │ │ └── CCNode.o.d
│ │ │ ├── CCCamera.o
│ │ │ ├── CCCamera.o.d
│ │ │ ├── CCConfiguration.o
│ │ │ ├── CCConfiguration.o.d
│ │ │ ├── CCDirector.o
│ │ │ ├── CCDirector.o.d
│ │ │ ├── ccFPSImages.o
│ │ │ ├── ccFPSImages.o.d
│ │ │ ├── CCScheduler.o
│ │ │ ├── CCScheduler.o.d
│ │ │ ├── cocoa
│ │ │ │ ├── CCAffineTransform.o
│ │ │ │ ├── CCAffineTransform.o.d
│ │ │ │ ├── CCArray.o
│ │ │ │ ├── CCArray.o.d
│ │ │ │ ├── CCAutoreleasePool.o
│ │ │ │ ├── CCAutoreleasePool.o.d
│ │ │ │ ├── CCDataVisitor.o
│ │ │ │ ├── CCDataVisitor.o.d
│ │ │ │ ├── CCDictionary.o
│ │ │ │ ├── CCDictionary.o.d
│ │ │ │ ├── CCGeometry.o
│ │ │ │ ├── CCGeometry.o.d
│ │ │ │ ├── CCNS.o
│ │ │ │ ├── CCNS.o.d
│ │ │ │ ├── CCObject.o
│ │ │ │ ├── CCObject.o.d
│ │ │ │ ├── CCSet.o
│ │ │ │ ├── CCSet.o.d
│ │ │ │ ├── CCString.o
│ │ │ │ ├── CCString.o.d
│ │ │ │ ├── CCZone.o
│ │ │ │ └── CCZone.o.d
│ │ │ ├── cocos2d.o
│ │ │ ├── cocos2d.o.d
│ │ │ ├── draw_nodes
│ │ │ │ ├── CCDrawingPrimitives.o
│ │ │ │ ├── CCDrawingPrimitives.o.d
│ │ │ │ ├── CCDrawNode.o
│ │ │ │ └── CCDrawNode.o.d
│ │ │ ├── effects
│ │ │ │ ├── CCGrabber.o
│ │ │ │ ├── CCGrabber.o.d
│ │ │ │ ├── CCGrid.o
│ │ │ │ └── CCGrid.o.d
│ │ │ ├── kazmath
│ │ │ │ └── src
│ │ │ │ ├── aabb.o
│ │ │ │ ├── aabb.o.d
│ │ │ │ ├── GL
│ │ │ │ │ ├── mat4stack.o
│ │ │ │ │ ├── mat4stack.o.d
│ │ │ │ │ ├── matrix.o
│ │ │ │ │ └── matrix.o.d
│ │ │ │ ├── mat3.o
│ │ │ │ ├── mat3.o.d
│ │ │ │ ├── mat4.o
│ │ │ │ ├── mat4.o.d
│ │ │ │ ├── neon_matrix_impl.o
│ │ │ │ ├── neon_matrix_impl.o.d
│ │ │ │ ├── plane.o
│ │ │ │ ├── plane.o.d
│ │ │ │ ├── quaternion.o
│ │ │ │ ├── quaternion.o.d
│ │ │ │ ├── ray2.o
│ │ │ │ ├── ray2.o.d
│ │ │ │ ├── utility.o
│ │ │ │ ├── utility.o.d
│ │ │ │ ├── vec2.o
│ │ │ │ ├── vec2.o.d
│ │ │ │ ├── vec3.o
│ │ │ │ ├── vec3.o.d
│ │ │ │ ├── vec4.o
│ │ │ │ └── vec4.o.d
│ │ │ ├── keypad_dispatcher
│ │ │ │ ├── CCKeypadDelegate.o
│ │ │ │ ├── CCKeypadDelegate.o.d
│ │ │ │ ├── CCKeypadDispatcher.o
│ │ │ │ └── CCKeypadDispatcher.o.d
│ │ │ ├── label_nodes
│ │ │ │ ├── CCLabelAtlas.o
│ │ │ │ ├── CCLabelAtlas.o.d
│ │ │ │ ├── CCLabelBMFont.o
│ │ │ │ ├── CCLabelBMFont.o.d
│ │ │ │ ├── CCLabelTTF.o
│ │ │ │ └── CCLabelTTF.o.d
│ │ │ ├── layers_scenes_transitions_nodes
│ │ │ │ ├── CCLayer.o
│ │ │ │ ├── CCLayer.o.d
│ │ │ │ ├── CCScene.o
│ │ │ │ ├── CCScene.o.d
│ │ │ │ ├── CCTransition.o
│ │ │ │ ├── CCTransition.o.d
│ │ │ │ ├── CCTransitionPageTurn.o
│ │ │ │ ├── CCTransitionPageTurn.o.d
│ │ │ │ ├── CCTransitionProgress.o
│ │ │ │ └── CCTransitionProgress.o.d
│ │ │ ├── menu_nodes
│ │ │ │ ├── CCMenuItem.o
│ │ │ │ ├── CCMenuItem.o.d
│ │ │ │ ├── CCMenu.o
│ │ │ │ └── CCMenu.o.d
│ │ │ ├── misc_nodes
│ │ │ │ ├── CCClippingNode.o
│ │ │ │ ├── CCClippingNode.o.d
│ │ │ │ ├── CCMotionStreak.o
│ │ │ │ ├── CCMotionStreak.o.d
│ │ │ │ ├── CCProgressTimer.o
│ │ │ │ ├── CCProgressTimer.o.d
│ │ │ │ ├── CCRenderTexture.o
│ │ │ │ └── CCRenderTexture.o.d
│ │ │ ├── particle_nodes
│ │ │ │ ├── CCParticleBatchNode.o
│ │ │ │ ├── CCParticleBatchNode.o.d
│ │ │ │ ├── CCParticleExamples.o
│ │ │ │ ├── CCParticleExamples.o.d
│ │ │ │ ├── CCParticleSystem.o
│ │ │ │ ├── CCParticleSystem.o.d
│ │ │ │ ├── CCParticleSystemQuad.o
│ │ │ │ └── CCParticleSystemQuad.o.d
│ │ │ ├── platform
│ │ │ │ ├── android
│ │ │ │ │ ├── CCAccelerometer.o
│ │ │ │ │ ├── CCAccelerometer.o.d
│ │ │ │ │ ├── CCApplication.o
│ │ │ │ │ ├── CCApplication.o.d
│ │ │ │ │ ├── CCCommon.o
│ │ │ │ │ ├── CCCommon.o.d
│ │ │ │ │ ├── CCDevice.o
│ │ │ │ │ ├── CCDevice.o.d
│ │ │ │ │ ├── CCEGLView.o
│ │ │ │ │ ├── CCEGLView.o.d
│ │ │ │ │ ├── CCFileUtilsAndroid.o
│ │ │ │ │ ├── CCFileUtilsAndroid.o.d
│ │ │ │ │ ├── CCImage.o
│ │ │ │ │ ├── CCImage.o.d
│ │ │ │ │ └── jni
│ │ │ │ │ ├── DPIJni.o
│ │ │ │ │ ├── DPIJni.o.d
│ │ │ │ │ ├── IMEJni.o
│ │ │ │ │ ├── IMEJni.o.d
│ │ │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxAccelerometer.o
│ │ │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxAccelerometer.o.d
│ │ │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxBitmap.o
│ │ │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxBitmap.o.d
│ │ │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxHelper.o
│ │ │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxHelper.o.d
│ │ │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxRenderer.o
│ │ │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxRenderer.o.d
│ │ │ │ │ ├── JniHelper.o
│ │ │ │ │ ├── JniHelper.o.d
│ │ │ │ │ ├── TouchesJni.o
│ │ │ │ │ └── TouchesJni.o.d
│ │ │ │ ├── CCEGLViewProtocol.o
│ │ │ │ ├── CCEGLViewProtocol.o.d
│ │ │ │ ├── CCFileUtils.o
│ │ │ │ ├── CCFileUtils.o.d
│ │ │ │ ├── CCImageCommonWebp.o
│ │ │ │ ├── CCImageCommonWebp.o.d
│ │ │ │ ├── CCSAXParser.o
│ │ │ │ ├── CCSAXParser.o.d
│ │ │ │ ├── CCThread.o
│ │ │ │ ├── CCThread.o.d
│ │ │ │ ├── platform.o
│ │ │ │ └── platform.o.d
│ │ │ ├── script_support
│ │ │ │ ├── CCScriptSupport.o
│ │ │ │ └── CCScriptSupport.o.d
│ │ │ ├── shaders
│ │ │ │ ├── CCGLProgram.o
│ │ │ │ ├── CCGLProgram.o.d
│ │ │ │ ├── ccGLStateCache.o
│ │ │ │ ├── ccGLStateCache.o.d
│ │ │ │ ├── CCShaderCache.o
│ │ │ │ ├── CCShaderCache.o.d
│ │ │ │ ├── ccShaders.o
│ │ │ │ └── ccShaders.o.d
│ │ │ ├── sprite_nodes
│ │ │ │ ├── CCAnimationCache.o
│ │ │ │ ├── CCAnimationCache.o.d
│ │ │ │ ├── CCAnimation.o
│ │ │ │ ├── CCAnimation.o.d
│ │ │ │ ├── CCSpriteBatchNode.o
│ │ │ │ ├── CCSpriteBatchNode.o.d
│ │ │ │ ├── CCSpriteFrameCache.o
│ │ │ │ ├── CCSpriteFrameCache.o.d
│ │ │ │ ├── CCSpriteFrame.o
│ │ │ │ ├── CCSpriteFrame.o.d
│ │ │ │ ├── CCSprite.o
│ │ │ │ └── CCSprite.o.d
│ │ │ ├── support
│ │ │ │ ├── base64.o
│ │ │ │ ├── base64.o.d
│ │ │ │ ├── CCNotificationCenter.o
│ │ │ │ ├── CCNotificationCenter.o.d
│ │ │ │ ├── CCPointExtension.o
│ │ │ │ ├── CCPointExtension.o.d
│ │ │ │ ├── CCProfiling.o
│ │ │ │ ├── CCProfiling.o.d
│ │ │ │ ├── ccUTF8.o
│ │ │ │ ├── ccUTF8.o.d
│ │ │ │ ├── ccUtils.o
│ │ │ │ ├── ccUtils.o.d
│ │ │ │ ├── CCVertex.o
│ │ │ │ ├── CCVertex.o.d
│ │ │ │ ├── component
│ │ │ │ │ ├── CCComponentContainer.o
│ │ │ │ │ ├── CCComponentContainer.o.d
│ │ │ │ │ ├── CCComponent.o
│ │ │ │ │ └── CCComponent.o.d
│ │ │ │ ├── data_support
│ │ │ │ │ ├── ccCArray.o
│ │ │ │ │ └── ccCArray.o.d
│ │ │ │ ├── image_support
│ │ │ │ │ ├── TGAlib.o
│ │ │ │ │ └── TGAlib.o.d
│ │ │ │ ├── tinyxml2
│ │ │ │ │ ├── tinyxml2.o
│ │ │ │ │ └── tinyxml2.o.d
│ │ │ │ ├── TransformUtils.o
│ │ │ │ ├── TransformUtils.o.d
│ │ │ │ ├── user_default
│ │ │ │ │ ├── CCUserDefaultAndroid.o
│ │ │ │ │ └── CCUserDefaultAndroid.o.d
│ │ │ │ └── zip_support
│ │ │ │ ├── ioapi.o
│ │ │ │ ├── ioapi.o.d
│ │ │ │ ├── unzip.o
│ │ │ │ ├── unzip.o.d
│ │ │ │ ├── ZipUtils.o
│ │ │ │ └── ZipUtils.o.d
│ │ │ ├── text_input_node
│ │ │ │ ├── CCIMEDispatcher.o
│ │ │ │ ├── CCIMEDispatcher.o.d
│ │ │ │ ├── CCTextFieldTTF.o
│ │ │ │ └── CCTextFieldTTF.o.d
│ │ │ ├── textures
│ │ │ │ ├── CCTexture2D.o
│ │ │ │ ├── CCTexture2D.o.d
│ │ │ │ ├── CCTextureAtlas.o
│ │ │ │ ├── CCTextureAtlas.o.d
│ │ │ │ ├── CCTextureCache.o
│ │ │ │ ├── CCTextureCache.o.d
│ │ │ │ ├── CCTextureETC.o
│ │ │ │ ├── CCTextureETC.o.d
│ │ │ │ ├── CCTexturePVR.o
│ │ │ │ └── CCTexturePVR.o.d
│ │ │ ├── tilemap_parallax_nodes
│ │ │ │ ├── CCParallaxNode.o
│ │ │ │ ├── CCParallaxNode.o.d
│ │ │ │ ├── CCTileMapAtlas.o
│ │ │ │ ├── CCTileMapAtlas.o.d
│ │ │ │ ├── CCTMXLayer.o
│ │ │ │ ├── CCTMXLayer.o.d
│ │ │ │ ├── CCTMXObjectGroup.o
│ │ │ │ ├── CCTMXObjectGroup.o.d
│ │ │ │ ├── CCTMXTiledMap.o
│ │ │ │ ├── CCTMXTiledMap.o.d
│ │ │ │ ├── CCTMXXMLParser.o
│ │ │ │ └── CCTMXXMLParser.o.d
│ │ │ └── touch_dispatcher
│ │ │ ├── CCTouchDispatcher.o
│ │ │ ├── CCTouchDispatcher.o.d
│ │ │ ├── CCTouchHandler.o
│ │ │ ├── CCTouchHandler.o.d
│ │ │ ├── CCTouch.o
│ │ │ └── CCTouch.o.d
│ │ ├── cocosdenshion_static
│ │ │ ├── jni
│ │ │ │ ├── SimpleAudioEngineJni.o
│ │ │ │ └── SimpleAudioEngineJni.o.d
│ │ │ ├── opensl
│ │ │ │ ├── OpenSLEngine.o
│ │ │ │ ├── OpenSLEngine.o.d
│ │ │ │ ├── SimpleAudioEngineOpenSL.o
│ │ │ │ └── SimpleAudioEngineOpenSL.o.d
│ │ │ ├── SimpleAudioEngine.o
│ │ │ └── SimpleAudioEngine.o.d
│ │ ├── cocos_extension_static
│ │ │ ├── AssetsManager
│ │ │ │ ├── AssetsManager.o
│ │ │ │ └── AssetsManager.o.d
│ │ │ ├── CCBReader
│ │ │ │ ├── CCBAnimationManager.o
│ │ │ │ ├── CCBAnimationManager.o.d
│ │ │ │ ├── CCBFileLoader.o
│ │ │ │ ├── CCBFileLoader.o.d
│ │ │ │ ├── CCBKeyframe.o
│ │ │ │ ├── CCBKeyframe.o.d
│ │ │ │ ├── CCBReader.o
│ │ │ │ ├── CCBReader.o.d
│ │ │ │ ├── CCBSequence.o
│ │ │ │ ├── CCBSequence.o.d
│ │ │ │ ├── CCBSequenceProperty.o
│ │ │ │ ├── CCBSequenceProperty.o.d
│ │ │ │ ├── CCBValue.o
│ │ │ │ ├── CCBValue.o.d
│ │ │ │ ├── CCControlButtonLoader.o
│ │ │ │ ├── CCControlButtonLoader.o.d
│ │ │ │ ├── CCControlLoader.o
│ │ │ │ ├── CCControlLoader.o.d
│ │ │ │ ├── CCData.o
│ │ │ │ ├── CCData.o.d
│ │ │ │ ├── CCLabelBMFontLoader.o
│ │ │ │ ├── CCLabelBMFontLoader.o.d
│ │ │ │ ├── CCLabelTTFLoader.o
│ │ │ │ ├── CCLabelTTFLoader.o.d
│ │ │ │ ├── CCLayerColorLoader.o
│ │ │ │ ├── CCLayerColorLoader.o.d
│ │ │ │ ├── CCLayerGradientLoader.o
│ │ │ │ ├── CCLayerGradientLoader.o.d
│ │ │ │ ├── CCLayerLoader.o
│ │ │ │ ├── CCLayerLoader.o.d
│ │ │ │ ├── CCMenuItemImageLoader.o
│ │ │ │ ├── CCMenuItemImageLoader.o.d
│ │ │ │ ├── CCMenuItemLoader.o
│ │ │ │ ├── CCMenuItemLoader.o.d
│ │ │ │ ├── CCNode+CCBRelativePositioning.o
│ │ │ │ ├── CCNode+CCBRelativePositioning.o.d
│ │ │ │ ├── CCNodeLoaderLibrary.o
│ │ │ │ ├── CCNodeLoaderLibrary.o.d
│ │ │ │ ├── CCNodeLoader.o
│ │ │ │ ├── CCNodeLoader.o.d
│ │ │ │ ├── CCParticleSystemQuadLoader.o
│ │ │ │ ├── CCParticleSystemQuadLoader.o.d
│ │ │ │ ├── CCScale9SpriteLoader.o
│ │ │ │ ├── CCScale9SpriteLoader.o.d
│ │ │ │ ├── CCScrollViewLoader.o
│ │ │ │ ├── CCScrollViewLoader.o.d
│ │ │ │ ├── CCSpriteLoader.o
│ │ │ │ └── CCSpriteLoader.o.d
│ │ │ ├── CocoStudio
│ │ │ │ ├── Action
│ │ │ │ │ ├── CCActionFrameEasing.o
│ │ │ │ │ ├── CCActionFrameEasing.o.d
│ │ │ │ │ ├── CCActionFrame.o
│ │ │ │ │ ├── CCActionFrame.o.d
│ │ │ │ │ ├── CCActionManager.o
│ │ │ │ │ ├── CCActionManager.o.d
│ │ │ │ │ ├── CCActionNode.o
│ │ │ │ │ ├── CCActionNode.o.d
│ │ │ │ │ ├── CCActionObject.o
│ │ │ │ │ └── CCActionObject.o.d
│ │ │ │ ├── Armature
│ │ │ │ │ ├── animation
│ │ │ │ │ │ ├── CCArmatureAnimation.o
│ │ │ │ │ │ ├── CCArmatureAnimation.o.d
│ │ │ │ │ │ ├── CCProcessBase.o
│ │ │ │ │ │ ├── CCProcessBase.o.d
│ │ │ │ │ │ ├── CCTween.o
│ │ │ │ │ │ └── CCTween.o.d
│ │ │ │ │ ├── CCArmature.o
│ │ │ │ │ ├── CCArmature.o.d
│ │ │ │ │ ├── CCBone.o
│ │ │ │ │ ├── CCBone.o.d
│ │ │ │ │ ├── datas
│ │ │ │ │ │ ├── CCDatas.o
│ │ │ │ │ │ └── CCDatas.o.d
│ │ │ │ │ ├── display
│ │ │ │ │ │ ├── CCBatchNode.o
│ │ │ │ │ │ ├── CCBatchNode.o.d
│ │ │ │ │ │ ├── CCDecorativeDisplay.o
│ │ │ │ │ │ ├── CCDecorativeDisplay.o.d
│ │ │ │ │ │ ├── CCDisplayFactory.o
│ │ │ │ │ │ ├── CCDisplayFactory.o.d
│ │ │ │ │ │ ├── CCDisplayManager.o
│ │ │ │ │ │ ├── CCDisplayManager.o.d
│ │ │ │ │ │ ├── CCSkin.o
│ │ │ │ │ │ └── CCSkin.o.d
│ │ │ │ │ ├── physics
│ │ │ │ │ │ ├── CCColliderDetector.o
│ │ │ │ │ │ └── CCColliderDetector.o.d
│ │ │ │ │ └── utils
│ │ │ │ │ ├── CCArmatureDataManager.o
│ │ │ │ │ ├── CCArmatureDataManager.o.d
│ │ │ │ │ ├── CCArmatureDefine.o
│ │ │ │ │ ├── CCArmatureDefine.o.d
│ │ │ │ │ ├── CCDataReaderHelper.o
│ │ │ │ │ ├── CCDataReaderHelper.o.d
│ │ │ │ │ ├── CCSpriteFrameCacheHelper.o
│ │ │ │ │ ├── CCSpriteFrameCacheHelper.o.d
│ │ │ │ │ ├── CCTransformHelp.o
│ │ │ │ │ ├── CCTransformHelp.o.d
│ │ │ │ │ ├── CCTweenFunction.o
│ │ │ │ │ ├── CCTweenFunction.o.d
│ │ │ │ │ ├── CCUtilMath.o
│ │ │ │ │ └── CCUtilMath.o.d
│ │ │ │ ├── Components
│ │ │ │ │ ├── CCComAttribute.o
│ │ │ │ │ ├── CCComAttribute.o.d
│ │ │ │ │ ├── CCComAudio.o
│ │ │ │ │ ├── CCComAudio.o.d
│ │ │ │ │ ├── CCComController.o
│ │ │ │ │ ├── CCComController.o.d
│ │ │ │ │ ├── CCComRender.o
│ │ │ │ │ ├── CCComRender.o.d
│ │ │ │ │ ├── CCInputDelegate.o
│ │ │ │ │ └── CCInputDelegate.o.d
│ │ │ │ ├── GUI
│ │ │ │ │ ├── BaseClasses
│ │ │ │ │ │ ├── UIRootWidget.o
│ │ │ │ │ │ ├── UIRootWidget.o.d
│ │ │ │ │ │ ├── UIWidget.o
│ │ │ │ │ │ └── UIWidget.o.d
│ │ │ │ │ ├── Layouts
│ │ │ │ │ │ ├── Layout.o
│ │ │ │ │ │ ├── Layout.o.d
│ │ │ │ │ │ ├── LayoutParameter.o
│ │ │ │ │ │ ├── LayoutParameter.o.d
│ │ │ │ │ │ ├── UILayoutDefine.o
│ │ │ │ │ │ └── UILayoutDefine.o.d
│ │ │ │ │ ├── System
│ │ │ │ │ │ ├── CocosGUI.o
│ │ │ │ │ │ ├── CocosGUI.o.d
│ │ │ │ │ │ ├── UIHelper.o
│ │ │ │ │ │ ├── UIHelper.o.d
│ │ │ │ │ │ ├── UIInputManager.o
│ │ │ │ │ │ ├── UIInputManager.o.d
│ │ │ │ │ │ ├── UILayer.o
│ │ │ │ │ │ └── UILayer.o.d
│ │ │ │ │ └── UIWidgets
│ │ │ │ │ ├── ScrollWidget
│ │ │ │ │ │ ├── UIDragPanel.o
│ │ │ │ │ │ ├── UIDragPanel.o.d
│ │ │ │ │ │ ├── UIListView.o
│ │ │ │ │ │ ├── UIListView.o.d
│ │ │ │ │ │ ├── UIPageView.o
│ │ │ │ │ │ ├── UIPageView.o.d
│ │ │ │ │ │ ├── UIScrollView.o
│ │ │ │ │ │ └── UIScrollView.o.d
│ │ │ │ │ ├── UIButton.o
│ │ │ │ │ ├── UIButton.o.d
│ │ │ │ │ ├── UICheckBox.o
│ │ │ │ │ ├── UICheckBox.o.d
│ │ │ │ │ ├── UIImageView.o
│ │ │ │ │ ├── UIImageView.o.d
│ │ │ │ │ ├── UILabelAtlas.o
│ │ │ │ │ ├── UILabelAtlas.o.d
│ │ │ │ │ ├── UILabelBMFont.o
│ │ │ │ │ ├── UILabelBMFont.o.d
│ │ │ │ │ ├── UILabel.o
│ │ │ │ │ ├── UILabel.o.d
│ │ │ │ │ ├── UILoadingBar.o
│ │ │ │ │ ├── UILoadingBar.o.d
│ │ │ │ │ ├── UISlider.o
│ │ │ │ │ ├── UISlider.o.d
│ │ │ │ │ ├── UISwitch.o
│ │ │ │ │ ├── UISwitch.o.d
│ │ │ │ │ ├── UITextField.o
│ │ │ │ │ └── UITextField.o.d
│ │ │ │ ├── Json
│ │ │ │ │ ├── CSContentJsonDictionary.o
│ │ │ │ │ ├── CSContentJsonDictionary.o.d
│ │ │ │ │ ├── DictionaryHelper.o
│ │ │ │ │ ├── DictionaryHelper.o.d
│ │ │ │ │ └── lib_json
│ │ │ │ │ ├── json_reader.o
│ │ │ │ │ ├── json_reader.o.d
│ │ │ │ │ ├── json_value.o
│ │ │ │ │ ├── json_value.o.d
│ │ │ │ │ ├── json_writer.o
│ │ │ │ │ └── json_writer.o.d
│ │ │ │ └── Reader
│ │ │ │ ├── CCSGUIReader.o
│ │ │ │ ├── CCSGUIReader.o.d
│ │ │ │ ├── CCSSceneReader.o
│ │ │ │ └── CCSSceneReader.o.d
│ │ │ ├── GUI
│ │ │ │ ├── CCControlExtension
│ │ │ │ │ ├── CCControlButton.o
│ │ │ │ │ ├── CCControlButton.o.d
│ │ │ │ │ ├── CCControlColourPicker.o
│ │ │ │ │ ├── CCControlColourPicker.o.d
│ │ │ │ │ ├── CCControlHuePicker.o
│ │ │ │ │ ├── CCControlHuePicker.o.d
│ │ │ │ │ ├── CCControl.o
│ │ │ │ │ ├── CCControl.o.d
│ │ │ │ │ ├── CCControlPotentiometer.o
│ │ │ │ │ ├── CCControlPotentiometer.o.d
│ │ │ │ │ ├── CCControlSaturationBrightnessPicker.o
│ │ │ │ │ ├── CCControlSaturationBrightnessPicker.o.d
│ │ │ │ │ ├── CCControlSlider.o
│ │ │ │ │ ├── CCControlSlider.o.d
│ │ │ │ │ ├── CCControlStepper.o
│ │ │ │ │ ├── CCControlStepper.o.d
│ │ │ │ │ ├── CCControlSwitch.o
│ │ │ │ │ ├── CCControlSwitch.o.d
│ │ │ │ │ ├── CCControlUtils.o
│ │ │ │ │ ├── CCControlUtils.o.d
│ │ │ │ │ ├── CCInvocation.o
│ │ │ │ │ ├── CCInvocation.o.d
│ │ │ │ │ ├── CCScale9Sprite.o
│ │ │ │ │ └── CCScale9Sprite.o.d
│ │ │ │ ├── CCEditBox
│ │ │ │ │ ├── CCEditBoxImplAndroid.o
│ │ │ │ │ ├── CCEditBoxImplAndroid.o.d
│ │ │ │ │ ├── CCEditBox.o
│ │ │ │ │ └── CCEditBox.o.d
│ │ │ │ └── CCScrollView
│ │ │ │ ├── CCScrollView.o
│ │ │ │ ├── CCScrollView.o.d
│ │ │ │ ├── CCSorting.o
│ │ │ │ ├── CCSorting.o.d
│ │ │ │ ├── CCTableViewCell.o
│ │ │ │ ├── CCTableViewCell.o.d
│ │ │ │ ├── CCTableView.o
│ │ │ │ └── CCTableView.o.d
│ │ │ ├── LocalStorage
│ │ │ │ ├── LocalStorageAndroid.o
│ │ │ │ └── LocalStorageAndroid.o.d
│ │ │ ├── network
│ │ │ │ ├── HttpClient.o
│ │ │ │ ├── HttpClient.o.d
│ │ │ │ ├── WebSocket.o
│ │ │ │ └── WebSocket.o.d
│ │ │ ├── physics_nodes
│ │ │ │ ├── CCPhysicsDebugNode.o
│ │ │ │ ├── CCPhysicsDebugNode.o.d
│ │ │ │ ├── CCPhysicsSprite.o
│ │ │ │ └── CCPhysicsSprite.o.d
│ │ │ └── spine
│ │ │ ├── Animation.o
│ │ │ ├── Animation.o.d
│ │ │ ├── AnimationStateData.o
│ │ │ ├── AnimationStateData.o.d
│ │ │ ├── AnimationState.o
│ │ │ ├── AnimationState.o.d
│ │ │ ├── AtlasAttachmentLoader.o
│ │ │ ├── AtlasAttachmentLoader.o.d
│ │ │ ├── Atlas.o
│ │ │ ├── Atlas.o.d
│ │ │ ├── AttachmentLoader.o
│ │ │ ├── AttachmentLoader.o.d
│ │ │ ├── Attachment.o
│ │ │ ├── Attachment.o.d
│ │ │ ├── BoneData.o
│ │ │ ├── BoneData.o.d
│ │ │ ├── Bone.o
│ │ │ ├── Bone.o.d
│ │ │ ├── CCSkeletonAnimation.o
│ │ │ ├── CCSkeletonAnimation.o.d
│ │ │ ├── CCSkeleton.o
│ │ │ ├── CCSkeleton.o.d
│ │ │ ├── extension.o
│ │ │ ├── extension.o.d
│ │ │ ├── Json.o
│ │ │ ├── Json.o.d
│ │ │ ├── RegionAttachment.o
│ │ │ ├── RegionAttachment.o.d
│ │ │ ├── SkeletonData.o
│ │ │ ├── SkeletonData.o.d
│ │ │ ├── SkeletonJson.o
│ │ │ ├── SkeletonJson.o.d
│ │ │ ├── Skeleton.o
│ │ │ ├── Skeleton.o.d
│ │ │ ├── Skin.o
│ │ │ ├── Skin.o.d
│ │ │ ├── SlotData.o
│ │ │ ├── SlotData.o.d
│ │ │ ├── Slot.o
│ │ │ ├── Slot.o.d
│ │ │ ├── spine-cocos2dx.o
│ │ │ └── spine-cocos2dx.o.d
│ │ └── cpufeatures
│ │ ├── cpu-features.o
│ │ └── cpu-features.o.d
│ ├── proguard-project.txt
│ ├── project.properties
│ ├── README.md
│ ├── res
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-ldpi
│ │ │ └── icon.png
│ │ ├── drawable-mdpi
│ │ │ └── icon.png
│ │ ├── drawable-xhdpi
│ │ ├── layout
│ │ └── values
│ │ └── strings.xml
│ └── src
│ ├── com
│ │ └── cocos2dx
│ │ └── org
│ │ └── RussianBox.java
│ └── org
│ └── cocos2dx
│ └── lib
│ ├── Cocos2dxAccelerometer.java
│ ├── Cocos2dxActivity.java
│ ├── Cocos2dxBitmap.java
│ ├── Cocos2dxEditBoxDialog.java
│ ├── Cocos2dxEditText.java
│ ├── Cocos2dxETCLoader.java
│ ├── Cocos2dxGLSurfaceView.java
│ ├── Cocos2dxHandler.java
│ ├── Cocos2dxHelper.java
│ ├── Cocos2dxLocalStorage.java
│ ├── Cocos2dxMusic.java
│ ├── Cocos2dxRenderer.java
│ ├── Cocos2dxSound.java
│ ├── Cocos2dxTextInputWraper.java
│ └── Cocos2dxTypefaces.java
├── proj.blackberry
│ ├── bar-descriptor.xml
│ ├── empty
│ │ └── empty
│ ├── icon.png
│ └── main.cpp
├── proj.ios
│ ├── AppController.h
│ ├── AppController.mm
│ ├── Default@2x.png
│ ├── Default-568h@2x.png
│ ├── Default.png
│ ├── Icon-114.png
│ ├── Icon-120.png
│ ├── Icon-144.png
│ ├── Icon-152.png
│ ├── Icon-57.png
│ ├── Icon-72.png
│ ├── Icon-76.png
│ ├── Info.plist
│ ├── main.m
│ ├── Prefix.pch
│ ├── RootViewController.h
│ ├── RootViewController.mm
│ └── RussianBox.xcodeproj
│ └── project.pbxproj
├── proj.linux
│ ├── build.sh
│ ├── main.cpp
│ └── Makefile
├── proj.mac
│ ├── AppController.h
│ ├── AppController.mm
│ ├── en.lproj
│ │ ├── InfoPlist.strings
│ │ └── MainMenu.xib
│ ├── Icon.icns
│ ├── Info.plist
│ ├── main.m
│ ├── Prefix.pch
│ └── RussianBox.xcodeproj
│ └── project.pbxproj
├── proj.marmalade
│ ├── RussianBox.mkb
│ └── src
│ ├── Main.cpp
│ └── Main.h
├── proj.win32
│ ├── Debug.win32
│ │ ├── AppDelegate.obj
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── GameBackground.obj
│ │ ├── glew32.dll
│ │ ├── glew32.lib
│ │ ├── HelloWorldScene.obj
│ │ ├── iconv.dll
│ │ ├── libBox2D.lib
│ │ ├── libchipmunk.lib
│ │ ├── libcocos2d.dll
│ │ ├── libcocos2d.exp
│ │ ├── libcocos2d.lib
│ │ ├── libcocos2d.pdb
│ │ ├── libCocosDenshion.dll
│ │ ├── libCocosDenshion.exp
│ │ ├── libCocosDenshion.lib
│ │ ├── libCocosDenshion.pdb
│ │ ├── libcurl.dll
│ │ ├── libcurl_imp.lib
│ │ ├── libExtensions.lib
│ │ ├── libiconv.lib
│ │ ├── libjpeg.lib
│ │ ├── libpng.lib
│ │ ├── libtiff.dll
│ │ ├── libtiff.lib
│ │ ├── libwebp.lib
│ │ ├── libzlib.lib
│ │ ├── link.1732-cvtres.read.1.tlog
│ │ ├── link.1732-cvtres.write.1.tlog
│ │ ├── link.1732-rc.read.1.tlog
│ │ ├── link.1732-rc.write.1.tlog
│ │ ├── link.1732.read.1.tlog
│ │ ├── link.1732.write.1.tlog
│ │ ├── link.5640-cvtres.read.1.tlog
│ │ ├── link.5640-cvtres.write.1.tlog
│ │ ├── link.5640-rc.read.1.tlog
│ │ ├── link.5640-rc.write.1.tlog
│ │ ├── link.5640.read.1.tlog
│ │ ├── link.5640.write.1.tlog
│ │ ├── link.6004-cvtres.read.1.tlog
│ │ ├── link.6004-cvtres.write.1.tlog
│ │ ├── link.6004-rc.read.1.tlog
│ │ ├── link.6004-rc.write.1.tlog
│ │ ├── link.6004.read.1.tlog
│ │ ├── link.6004.write.1.tlog
│ │ ├── link.648-cvtres.read.1.tlog
│ │ ├── link.648-cvtres.write.1.tlog
│ │ ├── link.648-rc.read.1.tlog
│ │ ├── link.648-rc.write.1.tlog
│ │ ├── link.648.read.1.tlog
│ │ ├── link.648.write.1.tlog
│ │ ├── link.6696-cvtres.read.1.tlog
│ │ ├── link.6696-cvtres.write.1.tlog
│ │ ├── link.6696-rc.read.1.tlog
│ │ ├── link.6696-rc.write.1.tlog
│ │ ├── link.6696.read.1.tlog
│ │ ├── link.6696.write.1.tlog
│ │ ├── link.7240-cvtres.read.1.tlog
│ │ ├── link.7240-cvtres.write.1.tlog
│ │ ├── link.7240-rc.read.1.tlog
│ │ ├── link.7240-rc.write.1.tlog
│ │ ├── link.7240.read.1.tlog
│ │ ├── link.7240.write.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link-cvtres.read.1.tlog
│ │ ├── link-cvtres.write.1.tlog
│ │ ├── link-rc.read.1.tlog
│ │ ├── link-rc.write.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.write.1.tlog
│ │ ├── main.obj
│ │ ├── pthreadVCE2.dll
│ │ ├── pthreadVCE2.lib
│ │ ├── RussianBox.Build.CppClean.log
│ │ ├── RussianBox.exe
│ │ ├── RussianBox.ilk
│ │ ├── RussianBox.lastbuildstate
│ │ ├── RussianBox.log
│ │ ├── RussianBox.pdb
│ │ ├── vc110.idb
│ │ ├── vc110.pdb
│ │ ├── websockets.dll
│ │ ├── websockets.lib
│ │ └── zlib1.dll
│ ├── main.cpp
│ ├── main.h
│ ├── RussianBox.sdf
│ ├── RussianBox.sln
│ ├── RussianBox.v11.suo
│ ├── RussianBox.vcxproj
│ ├── RussianBox.vcxproj.filters
│ └── RussianBox.vcxproj.user
├── proj.winrt
│ ├── App.xaml
│ ├── App.xaml.cpp
│ ├── App.xaml.h
│ ├── Assets
│ │ ├── Logo.png
│ │ ├── SmallLogo.png
│ │ ├── SplashScreen.png
│ │ ├── StoreLogo.png
│ │ └── WideLogo.png
│ ├── Common
│ │ └── StandardStyles.xaml
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cpp
│ ├── MainPage.xaml.h
│ ├── Package.appxmanifest
│ ├── pch.cpp
│ ├── pch.h
│ ├── RussianBox.sln
│ ├── RussianBox_TemporaryKey.pfx
│ ├── RussianBox.vcxproj
│ └── RussianBox.vcxproj.filters
├── proj.wp8
│ ├── Assets
│ │ ├── AlignmentGrid.png
│ │ ├── ApplicationIcon.png
│ │ ├── Resources
│ │ │ └── fonts
│ │ │ └── arial.ttf
│ │ └── Tiles
│ │ ├── FlipCycleTileLarge.png
│ │ ├── FlipCycleTileMedium.png
│ │ ├── FlipCycleTileSmall.png
│ │ ├── IconicTileMediumLarge.png
│ │ └── IconicTileSmall.png
│ ├── RussianBox.cpp
│ ├── RussianBox.h
│ ├── RussianBox.sln
│ ├── RussianBox.vcxproj
│ ├── RussianBox.vcxproj.filters
│ └── WMAppManifest.xml
└── Resources
├── acdown.png
├── b1.jpg
├── b1.png
├── b2.png
├── bg.png
├── boom1.png
├── boom2.png
├── boom3.png
├── boom4.png
├── boom5.png
├── cat.png
├── CloseNormal.png
├── CloseSelected.png
├── continueA.png
├── continueB.png
├── f1.png
├── f2.jpg
├── f2.png
├── fonts
│ └── Marker Felt.ttf
├── gameover.png
├── HelloWorld.png
├── newgameA.png
├── newgameB.png
├── node.png
├── pause.png
├── r1.png
├── r2.png
├── tb.png
└── transfer.png
148 directories, 1013 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论