├── CMakeLists.txt ├── Classes ├── AppDelegate.cpp ├── AppDelegate.h ├── PlayLayer.cpp ├── PlayLayer.h ├── SushiSprite.cpp └── SushiSprite.h ├── README.md ├── Resources └── w640 │ ├── background.png │ ├── circle.png │ ├── colorHLeft.png │ ├── colorHRight.png │ ├── colorVDown.png │ ├── colorVUp.png │ ├── stars.plist │ ├── stars.png │ ├── sushi.plist │ └── sushi.pvr.ccz ├── TexturePacker └── w640 │ ├── sushi.tps │ ├── sushi_1h.png │ ├── sushi_1n.png │ ├── sushi_1v.png │ ├── sushi_2h.png │ ├── sushi_2n.png │ ├── sushi_2v.png │ ├── sushi_3h.png │ ├── sushi_3n.png │ ├── sushi_3v.png │ ├── sushi_4h.png │ ├── sushi_4n.png │ ├── sushi_4v.png │ ├── sushi_5h.png │ ├── sushi_5n.png │ ├── sushi_5v.png │ ├── sushi_6h.png │ ├── sushi_6n.png │ └── sushi_6v.png ├── cocos2d ├── AUTHORS ├── CHANGELOG ├── CMakeLists.txt ├── README.md ├── build │ ├── BuildHelpers.CMakeLists.txt │ ├── android-build.py │ ├── build-mingw32-clang-make.sh │ ├── build-mingw32-gcc-make.sh │ ├── cocos2d-win32.vc2012.sln │ ├── cocos2d_libs.xcodeproj │ │ └── project.pbxproj │ ├── cocos2d_tests.xcodeproj │ │ └── project.pbxproj │ ├── install-deps-linux.sh │ ├── win32-msvc-2012-x86.cmd │ └── win32-msvc-2013-x86.cmd ├── cocos │ ├── 2d │ │ ├── Android.mk │ │ ├── CCAction.cpp │ │ ├── CCAction.h │ │ ├── CCActionCamera.cpp │ │ ├── CCActionCamera.h │ │ ├── CCActionCatmullRom.cpp │ │ ├── CCActionCatmullRom.h │ │ ├── CCActionEase.cpp │ │ ├── CCActionEase.h │ │ ├── CCActionGrid.cpp │ │ ├── CCActionGrid.h │ │ ├── CCActionGrid3D.cpp │ │ ├── CCActionGrid3D.h │ │ ├── CCActionInstant.cpp │ │ ├── CCActionInstant.h │ │ ├── CCActionInterval.cpp │ │ ├── CCActionInterval.h │ │ ├── CCActionManager.cpp │ │ ├── CCActionManager.h │ │ ├── CCActionPageTurn3D.cpp │ │ ├── CCActionPageTurn3D.h │ │ ├── CCActionProgressTimer.cpp │ │ ├── CCActionProgressTimer.h │ │ ├── CCActionTiledGrid.cpp │ │ ├── CCActionTiledGrid.h │ │ ├── CCActionTween.cpp │ │ ├── CCActionTween.h │ │ ├── CCAnimation.cpp │ │ ├── CCAnimation.h │ │ ├── CCAnimationCache.cpp │ │ ├── CCAnimationCache.h │ │ ├── CCAtlasNode.cpp │ │ ├── CCAtlasNode.h │ │ ├── CCClippingNode.cpp │ │ ├── CCClippingNode.h │ │ ├── CCComponent.cpp │ │ ├── CCComponent.h │ │ ├── CCComponentContainer.cpp │ │ ├── CCComponentContainer.h │ │ ├── CCConfiguration.cpp │ │ ├── CCConfiguration.h │ │ ├── CCDeprecated.cpp │ │ ├── CCDeprecated.h │ │ ├── CCDirector.cpp │ │ ├── CCDirector.h │ │ ├── CCDrawNode.cpp │ │ ├── CCDrawNode.h │ │ ├── CCDrawingPrimitives.cpp │ │ ├── CCDrawingPrimitives.h │ │ ├── CCEvent.cpp │ │ ├── CCEvent.h │ │ ├── CCEventAcceleration.cpp │ │ ├── CCEventAcceleration.h │ │ ├── CCEventCustom.cpp │ │ ├── CCEventCustom.h │ │ ├── CCEventDispatcher.cpp │ │ ├── CCEventDispatcher.h │ │ ├── CCEventKeyboard.cpp │ │ ├── CCEventKeyboard.h │ │ ├── CCEventListener.cpp │ │ ├── CCEventListener.h │ │ ├── CCEventListenerAcceleration.cpp │ │ ├── CCEventListenerAcceleration.h │ │ ├── CCEventListenerCustom.cpp │ │ ├── CCEventListenerCustom.h │ │ ├── CCEventListenerKeyboard.cpp │ │ ├── CCEventListenerKeyboard.h │ │ ├── CCEventListenerMouse.cpp │ │ ├── CCEventListenerMouse.h │ │ ├── CCEventListenerTouch.cpp │ │ ├── CCEventListenerTouch.h │ │ ├── CCEventMouse.cpp │ │ ├── CCEventMouse.h │ │ ├── CCEventTouch.cpp │ │ ├── CCEventTouch.h │ │ ├── CCEventType.h │ │ ├── CCFont.cpp │ │ ├── CCFont.h │ │ ├── CCFontAtlas.cpp │ │ ├── CCFontAtlas.h │ │ ├── CCFontAtlasCache.cpp │ │ ├── CCFontAtlasCache.h │ │ ├── CCFontCharMap.cpp │ │ ├── CCFontCharMap.h │ │ ├── CCFontFNT.cpp │ │ ├── CCFontFNT.h │ │ ├── CCFontFreeType.cpp │ │ ├── CCFontFreeType.h │ │ ├── CCGLBufferedNode.cpp │ │ ├── CCGLBufferedNode.h │ │ ├── CCGLProgram.cpp │ │ ├── CCGLProgram.h │ │ ├── CCGrabber.cpp │ │ ├── CCGrabber.h │ │ ├── CCGrid.cpp │ │ ├── CCGrid.h │ │ ├── CCIMEDelegate.h │ │ ├── CCIMEDispatcher.cpp │ │ ├── CCIMEDispatcher.h │ │ ├── CCLabel.cpp │ │ ├── CCLabel.h │ │ ├── CCLabelAtlas.cpp │ │ ├── CCLabelAtlas.h │ │ ├── CCLabelBMFont.cpp │ │ ├── CCLabelBMFont.h │ │ ├── CCLabelTTF.cpp │ │ ├── CCLabelTTF.h │ │ ├── CCLabelTextFormatter.cpp │ │ ├── CCLabelTextFormatter.h │ │ ├── CCLayer.cpp │ │ ├── CCLayer.h │ │ ├── CCMenu.cpp │ │ ├── CCMenu.h │ │ ├── CCMenuItem.cpp │ │ ├── CCMenuItem.h │ │ ├── CCMotionStreak.cpp │ │ ├── CCMotionStreak.h │ │ ├── CCNode.cpp │ │ ├── CCNode.h │ │ ├── CCNodeGrid.cpp │ │ ├── CCNodeGrid.h │ │ ├── CCNotificationCenter.cpp │ │ ├── CCNotificationCenter.h │ │ ├── CCParallaxNode.cpp │ │ ├── CCParallaxNode.h │ │ ├── CCParticleBatchNode.cpp │ │ ├── CCParticleBatchNode.h │ │ ├── CCParticleExamples.cpp │ │ ├── CCParticleExamples.h │ │ ├── CCParticleSystem.cpp │ │ ├── CCParticleSystem.h │ │ ├── CCParticleSystemQuad.cpp │ │ ├── CCParticleSystemQuad.h │ │ ├── CCProfiling.cpp │ │ ├── CCProfiling.h │ │ ├── CCProgressTimer.cpp │ │ ├── CCProgressTimer.h │ │ ├── CCProtocols.h │ │ ├── CCRenderTexture.cpp │ │ ├── CCRenderTexture.h │ │ ├── CCScene.cpp │ │ ├── CCScene.h │ │ ├── CCScheduler.cpp │ │ ├── CCScheduler.h │ │ ├── CCScriptSupport.cpp │ │ ├── CCScriptSupport.h │ │ ├── CCShaderCache.cpp │ │ ├── CCShaderCache.h │ │ ├── CCSprite.cpp │ │ ├── CCSprite.h │ │ ├── CCSpriteBatchNode.cpp │ │ ├── CCSpriteBatchNode.h │ │ ├── CCSpriteFrame.cpp │ │ ├── CCSpriteFrame.h │ │ ├── CCSpriteFrameCache.cpp │ │ ├── CCSpriteFrameCache.h │ │ ├── CCTMXLayer.cpp │ │ ├── CCTMXLayer.h │ │ ├── CCTMXObjectGroup.cpp │ │ ├── CCTMXObjectGroup.h │ │ ├── CCTMXTiledMap.cpp │ │ ├── CCTMXTiledMap.h │ │ ├── CCTMXXMLParser.cpp │ │ ├── CCTMXXMLParser.h │ │ ├── CCTextFieldTTF.cpp │ │ ├── CCTextFieldTTF.h │ │ ├── CCTexture2D.cpp │ │ ├── CCTexture2D.h │ │ ├── CCTextureAtlas.cpp │ │ ├── CCTextureAtlas.h │ │ ├── CCTextureCache.cpp │ │ ├── CCTextureCache.h │ │ ├── CCTileMapAtlas.cpp │ │ ├── CCTileMapAtlas.h │ │ ├── CCTouch.cpp │ │ ├── CCTouch.h │ │ ├── CCTransition.cpp │ │ ├── CCTransition.h │ │ ├── CCTransitionPageTurn.cpp │ │ ├── CCTransitionPageTurn.h │ │ ├── CCTransitionProgress.cpp │ │ ├── CCTransitionProgress.h │ │ ├── CCTweenFunction.cpp │ │ ├── CCTweenFunction.h │ │ ├── CCUserDefault.cpp │ │ ├── CCUserDefault.h │ │ ├── CCUserDefault.mm │ │ ├── CCUserDefaultAndroid.cpp │ │ ├── CCVertex.cpp │ │ ├── CCVertex.h │ │ ├── CMakeLists.txt │ │ ├── TGAlib.cpp │ │ ├── TGAlib.h │ │ ├── TransformUtils.cpp │ │ ├── TransformUtils.h │ │ ├── ZipUtils.cpp │ │ ├── ZipUtils.h │ │ ├── base64.cpp │ │ ├── base64.h │ │ ├── ccCArray.cpp │ │ ├── ccCArray.h │ │ ├── ccConfig.h │ │ ├── ccFPSImages.c │ │ ├── ccFPSImages.h │ │ ├── ccGLStateCache.cpp │ │ ├── ccGLStateCache.h │ │ ├── ccMacros.h │ │ ├── ccShaderEx_SwitchMask_frag.h │ │ ├── ccShader_Label_frag.h │ │ ├── ccShader_Label_frag_glow.h │ │ ├── ccShader_Label_frag_outline.h │ │ ├── ccShader_Label_frag_shadow.h │ │ ├── ccShader_Label_vert.h │ │ ├── ccShader_PositionColorLengthTexture_frag.h │ │ ├── ccShader_PositionColorLengthTexture_vert.h │ │ ├── ccShader_PositionColor_frag.h │ │ ├── ccShader_PositionColor_vert.h │ │ ├── ccShader_PositionTextureA8Color_frag.h │ │ ├── ccShader_PositionTextureA8Color_vert.h │ │ ├── ccShader_PositionTextureColorAlphaTest_frag.h │ │ ├── ccShader_PositionTextureColor_frag.h │ │ ├── ccShader_PositionTextureColor_noMVP_frag.h │ │ ├── ccShader_PositionTextureColor_noMVP_vert.h │ │ ├── ccShader_PositionTextureColor_vert.h │ │ ├── ccShader_PositionTexture_frag.h │ │ ├── ccShader_PositionTexture_uColor_frag.h │ │ ├── ccShader_PositionTexture_uColor_vert.h │ │ ├── ccShader_PositionTexture_vert.h │ │ ├── ccShader_Position_uColor_frag.h │ │ ├── ccShader_Position_uColor_vert.h │ │ ├── ccShaders.cpp │ │ ├── ccShaders.h │ │ ├── ccTypes.cpp │ │ ├── ccTypes.h │ │ ├── ccUTF8.cpp │ │ ├── ccUTF8.h │ │ ├── ccUtils.cpp │ │ ├── ccUtils.h │ │ ├── cocos2d.cpp │ │ ├── cocos2d.h │ │ ├── cocos2d.vcxproj │ │ ├── cocos2d.vcxproj.filters │ │ ├── cocos2d.vcxproj.user │ │ ├── cocos2d_headers.props │ │ ├── cocos2dx-Prefix.pch │ │ ├── cocos2dx.props │ │ ├── firePngData.h │ │ ├── platform │ │ │ ├── CCApplicationProtocol.h │ │ │ ├── CCCommon.h │ │ │ ├── CCDevice.h │ │ │ ├── CCFileUtils.cpp │ │ │ ├── CCFileUtils.h │ │ │ ├── CCGLViewProtocol.cpp │ │ │ ├── CCGLViewProtocol.h │ │ │ ├── CCImage.cpp │ │ │ ├── CCImage.h │ │ │ ├── CCSAXParser.cpp │ │ │ ├── CCSAXParser.h │ │ │ ├── CCThread.cpp │ │ │ ├── CCThread.h │ │ │ ├── android │ │ │ │ ├── Android.mk │ │ │ │ ├── CCApplication.cpp │ │ │ │ ├── CCApplication.h │ │ │ │ ├── CCCommon.cpp │ │ │ │ ├── CCDevice.cpp │ │ │ │ ├── CCFileUtilsAndroid.cpp │ │ │ │ ├── CCFileUtilsAndroid.h │ │ │ │ ├── CCGL.h │ │ │ │ ├── CCGLView.cpp │ │ │ │ ├── CCGLView.h │ │ │ │ ├── CCPlatformDefine.h │ │ │ │ ├── CCStdC.h │ │ │ │ ├── java │ │ │ │ │ ├── .classpath │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── ant.properties │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── proguard-project.txt │ │ │ │ │ ├── project.properties │ │ │ │ │ ├── res │ │ │ │ │ │ └── .gitignore │ │ │ │ │ └── src │ │ │ │ │ │ └── org │ │ │ │ │ │ └── cocos2dx │ │ │ │ │ │ └── lib │ │ │ │ │ │ ├── Cocos2dxBitmap.java │ │ │ │ │ │ ├── Cocos2dxEditBoxDialog.java │ │ │ │ │ │ ├── Cocos2dxEditText.java │ │ │ │ │ │ ├── Cocos2dxHelper.java │ │ │ │ │ │ ├── Cocos2dxLocalStorage.java │ │ │ │ │ │ ├── Cocos2dxLuaJavaBridge.java │ │ │ │ │ │ ├── Cocos2dxMusic.java │ │ │ │ │ │ ├── Cocos2dxSound.java │ │ │ │ │ │ └── Cocos2dxTypefaces.java │ │ │ │ ├── jni │ │ │ │ │ ├── DPIJni.cpp │ │ │ │ │ ├── DPIJni.h │ │ │ │ │ ├── IMEJni.cpp │ │ │ │ │ ├── IMEJni.h │ │ │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxBitmap.cpp │ │ │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxBitmap.h │ │ │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxHelper.cpp │ │ │ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxHelper.h │ │ │ │ │ ├── JniHelper.cpp │ │ │ │ │ └── JniHelper.h │ │ │ │ ├── nativeactivity.cpp │ │ │ │ └── nativeactivity.h │ │ │ ├── apple │ │ │ │ ├── CCFileUtilsApple.h │ │ │ │ ├── CCFileUtilsApple.mm │ │ │ │ ├── CCLock.cpp │ │ │ │ ├── CCLock.h │ │ │ │ └── CCThread.mm │ │ │ ├── desktop │ │ │ │ ├── CCGLView.cpp │ │ │ │ └── CCGLView.h │ │ │ ├── ios │ │ │ │ ├── CCApplication.h │ │ │ │ ├── CCApplication.mm │ │ │ │ ├── CCCommon.mm │ │ │ │ ├── CCDevice.mm │ │ │ │ ├── CCDirectorCaller.h │ │ │ │ ├── CCDirectorCaller.mm │ │ │ │ ├── CCEAGLView.h │ │ │ │ ├── CCEAGLView.mm │ │ │ │ ├── CCES2Renderer.h │ │ │ │ ├── CCES2Renderer.m │ │ │ │ ├── CCESRenderer.h │ │ │ │ ├── CCGL.h │ │ │ │ ├── CCGLView.h │ │ │ │ ├── CCGLView.mm │ │ │ │ ├── CCImage.mm │ │ │ │ ├── CCPlatformDefine.h │ │ │ │ ├── CCStdC.h │ │ │ │ ├── OpenGL_Internal.h │ │ │ │ └── Simulation │ │ │ │ │ ├── AccelerometerSimulation.h │ │ │ │ │ └── AccelerometerSimulation.m │ │ │ ├── linux │ │ │ │ ├── CCApplication.cpp │ │ │ │ ├── CCApplication.h │ │ │ │ ├── CCCommon.cpp │ │ │ │ ├── CCDevice.cpp │ │ │ │ ├── CCFileUtilsLinux.cpp │ │ │ │ ├── CCFileUtilsLinux.h │ │ │ │ ├── CCGL.h │ │ │ │ ├── CCPlatformDefine.h │ │ │ │ ├── CCStdC.cpp │ │ │ │ └── CCStdC.h │ │ │ ├── mac │ │ │ │ ├── CCApplication.h │ │ │ │ ├── CCApplication.mm │ │ │ │ ├── CCCommon.mm │ │ │ │ ├── CCDevice.mm │ │ │ │ ├── CCGL.h │ │ │ │ ├── CCPlatformDefine.h │ │ │ │ └── CCStdC.h │ │ │ └── win32 │ │ │ │ ├── CCApplication.cpp │ │ │ │ ├── CCApplication.h │ │ │ │ ├── CCCommon.cpp │ │ │ │ ├── CCDevice.cpp │ │ │ │ ├── CCFileUtilsWin32.cpp │ │ │ │ ├── CCFileUtilsWin32.h │ │ │ │ ├── CCGL.h │ │ │ │ ├── CCPlatformDefine.h │ │ │ │ ├── CCStdC.cpp │ │ │ │ ├── CCStdC.h │ │ │ │ └── compat │ │ │ │ └── stdint.h │ │ ├── renderer │ │ │ ├── CCBatchCommand.cpp │ │ │ ├── CCBatchCommand.h │ │ │ ├── CCCustomCommand.cpp │ │ │ ├── CCCustomCommand.h │ │ │ ├── CCFrustum.cpp │ │ │ ├── CCFrustum.h │ │ │ ├── CCGroupCommand.cpp │ │ │ ├── CCGroupCommand.h │ │ │ ├── CCMaterialManager.cpp │ │ │ ├── CCMaterialManager.h │ │ │ ├── CCQuadCommand.cpp │ │ │ ├── CCQuadCommand.h │ │ │ ├── CCRenderCommand.cpp │ │ │ ├── CCRenderCommand.h │ │ │ ├── CCRenderCommandPool.h │ │ │ ├── CCRenderMaterial.cpp │ │ │ ├── CCRenderMaterial.h │ │ │ ├── CCRenderer.cpp │ │ │ └── CCRenderer.h │ │ ├── uthash.h │ │ └── utlist.h │ ├── audio │ │ ├── CMakeLists.txt │ │ ├── android │ │ │ ├── Android.mk │ │ │ ├── ccdandroidUtils.cpp │ │ │ ├── ccdandroidUtils.h │ │ │ ├── cddSimpleAudioEngine.cpp │ │ │ ├── jni │ │ │ │ ├── cddandroidAndroidJavaEngine.cpp │ │ │ │ └── cddandroidAndroidJavaEngine.h │ │ │ └── opensl │ │ │ │ ├── OpenSLEngine.cpp │ │ │ │ ├── OpenSLEngine.h │ │ │ │ ├── SimpleAudioEngineOpenSL.cpp │ │ │ │ ├── SimpleAudioEngineOpenSL.h │ │ │ │ ├── cddandroidOpenSLEngine.cpp │ │ │ │ └── cddandroidOpenSLEngine.h │ │ ├── include │ │ │ ├── Export.h │ │ │ └── SimpleAudioEngine.h │ │ ├── ios │ │ │ ├── CDAudioManager.h │ │ │ ├── CDAudioManager.m │ │ │ ├── CDConfig.h │ │ │ ├── CDOpenALSupport.h │ │ │ ├── CDOpenALSupport.m │ │ │ ├── CocosDenshion.h │ │ │ ├── CocosDenshion.m │ │ │ ├── SimpleAudioEngine.mm │ │ │ ├── SimpleAudioEngine_objc.h │ │ │ └── SimpleAudioEngine_objc.m │ │ ├── linux │ │ │ ├── AudioPlayer.h │ │ │ ├── FmodAudioPlayer.cpp │ │ │ ├── FmodAudioPlayer.h │ │ │ └── SimpleAudioEngineFMOD.cpp │ │ ├── mac │ │ │ ├── CDAudioManager.h │ │ │ ├── CDAudioManager.m │ │ │ ├── CDConfig.h │ │ │ ├── CDOpenALSupport.h │ │ │ ├── CDOpenALSupport.m │ │ │ ├── CDXMacOSXSupport.h │ │ │ ├── CDXMacOSXSupport.mm │ │ │ ├── CocosDenshion.h │ │ │ ├── CocosDenshion.m │ │ │ ├── SimpleAudioEngine.mm │ │ │ ├── SimpleAudioEngine_objc.h │ │ │ └── SimpleAudioEngine_objc.m │ │ ├── openal │ │ │ ├── OpenALDecoder.cpp │ │ │ ├── OpenALDecoder.h │ │ │ └── SimpleAudioEngineOpenAL.cpp │ │ ├── proj.win32 │ │ │ ├── CocosDenshion.vcxproj │ │ │ ├── CocosDenshion.vcxproj.filters │ │ │ └── CocosDenshion.vcxproj.user │ │ └── win32 │ │ │ ├── MciPlayer.cpp │ │ │ ├── MciPlayer.h │ │ │ └── SimpleAudioEngine.cpp │ ├── base │ │ ├── CCAffineTransform.cpp │ │ ├── CCAffineTransform.h │ │ ├── CCArray.cpp │ │ ├── CCArray.h │ │ ├── CCAutoreleasePool.cpp │ │ ├── CCAutoreleasePool.h │ │ ├── CCBool.h │ │ ├── CCConsole.cpp │ │ ├── CCConsole.h │ │ ├── CCData.cpp │ │ ├── CCData.h │ │ ├── CCDataVisitor.cpp │ │ ├── CCDataVisitor.h │ │ ├── CCDictionary.cpp │ │ ├── CCDictionary.h │ │ ├── CCDouble.h │ │ ├── CCFloat.h │ │ ├── CCGeometry.cpp │ │ ├── CCGeometry.h │ │ ├── CCInteger.h │ │ ├── CCMap.h │ │ ├── CCNS.cpp │ │ ├── CCNS.h │ │ ├── CCPlatformConfig.h │ │ ├── CCPlatformMacros.h │ │ ├── CCRef.cpp │ │ ├── CCRef.h │ │ ├── CCSet.cpp │ │ ├── CCSet.h │ │ ├── CCString.cpp │ │ ├── CCString.h │ │ ├── CCValue.cpp │ │ ├── CCValue.h │ │ ├── CCVector.h │ │ ├── CMakeLists.txt │ │ ├── atitc.cpp │ │ ├── atitc.h │ │ ├── etc1.cpp │ │ ├── etc1.h │ │ ├── s3tc.cpp │ │ └── s3tc.h │ ├── editor-support │ │ ├── cocosbuilder │ │ │ ├── Android.mk │ │ │ ├── CCBAnimationManager.cpp │ │ │ ├── CCBAnimationManager.h │ │ │ ├── CCBFileLoader.cpp │ │ │ ├── CCBFileLoader.h │ │ │ ├── CCBKeyframe.cpp │ │ │ ├── CCBKeyframe.h │ │ │ ├── CCBMemberVariableAssigner.h │ │ │ ├── CCBReader.cpp │ │ │ ├── CCBReader.h │ │ │ ├── CCBSelectorResolver.h │ │ │ ├── CCBSequence.cpp │ │ │ ├── CCBSequence.h │ │ │ ├── CCBSequenceProperty.cpp │ │ │ ├── CCBSequenceProperty.h │ │ │ ├── CCControlButtonLoader.cpp │ │ │ ├── CCControlButtonLoader.h │ │ │ ├── CCControlLoader.cpp │ │ │ ├── CCControlLoader.h │ │ │ ├── CCLabelBMFontLoader.cpp │ │ │ ├── CCLabelBMFontLoader.h │ │ │ ├── CCLabelTTFLoader.cpp │ │ │ ├── CCLabelTTFLoader.h │ │ │ ├── CCLayerColorLoader.cpp │ │ │ ├── CCLayerColorLoader.h │ │ │ ├── CCLayerGradientLoader.cpp │ │ │ ├── CCLayerGradientLoader.h │ │ │ ├── CCLayerLoader.cpp │ │ │ ├── CCLayerLoader.h │ │ │ ├── CCMenuItemImageLoader.cpp │ │ │ ├── CCMenuItemImageLoader.h │ │ │ ├── CCMenuItemLoader.cpp │ │ │ ├── CCMenuItemLoader.h │ │ │ ├── CCMenuLoader.h │ │ │ ├── CCNode+CCBRelativePositioning.cpp │ │ │ ├── CCNode+CCBRelativePositioning.h │ │ │ ├── CCNodeLoader.cpp │ │ │ ├── CCNodeLoader.h │ │ │ ├── CCNodeLoaderLibrary.cpp │ │ │ ├── CCNodeLoaderLibrary.h │ │ │ ├── CCNodeLoaderListener.h │ │ │ ├── CCParticleSystemQuadLoader.cpp │ │ │ ├── CCParticleSystemQuadLoader.h │ │ │ ├── CCScale9SpriteLoader.cpp │ │ │ ├── CCScale9SpriteLoader.h │ │ │ ├── CCScrollViewLoader.cpp │ │ │ ├── CCScrollViewLoader.h │ │ │ ├── CCSpriteLoader.cpp │ │ │ ├── CCSpriteLoader.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CocosBuilder.h │ │ │ └── proj.win32 │ │ │ │ ├── libCocosBuilder.vcxproj │ │ │ │ ├── libCocosBuilder.vcxproj.filters │ │ │ │ └── libCocosBuilder.vcxproj.user │ │ ├── cocostudio │ │ │ ├── Android.mk │ │ │ ├── CCActionFrame.cpp │ │ │ ├── CCActionFrame.h │ │ │ ├── CCActionFrameEasing.cpp │ │ │ ├── CCActionFrameEasing.h │ │ │ ├── CCActionManagerEx.cpp │ │ │ ├── CCActionManagerEx.h │ │ │ ├── CCActionNode.cpp │ │ │ ├── CCActionNode.h │ │ │ ├── CCActionObject.cpp │ │ │ ├── CCActionObject.h │ │ │ ├── CCArmature.cpp │ │ │ ├── CCArmature.h │ │ │ ├── CCArmatureAnimation.cpp │ │ │ ├── CCArmatureAnimation.h │ │ │ ├── CCArmatureDataManager.cpp │ │ │ ├── CCArmatureDataManager.h │ │ │ ├── CCArmatureDefine.cpp │ │ │ ├── CCArmatureDefine.h │ │ │ ├── CCBatchNode.cpp │ │ │ ├── CCBatchNode.h │ │ │ ├── CCBone.cpp │ │ │ ├── CCBone.h │ │ │ ├── CCColliderDetector.cpp │ │ │ ├── CCColliderDetector.h │ │ │ ├── CCComAttribute.cpp │ │ │ ├── CCComAttribute.h │ │ │ ├── CCComAudio.cpp │ │ │ ├── CCComAudio.h │ │ │ ├── CCComBase.h │ │ │ ├── CCComController.cpp │ │ │ ├── CCComController.h │ │ │ ├── CCComRender.cpp │ │ │ ├── CCComRender.h │ │ │ ├── CCDataReaderHelper.cpp │ │ │ ├── CCDataReaderHelper.h │ │ │ ├── CCDatas.cpp │ │ │ ├── CCDatas.h │ │ │ ├── CCDecorativeDisplay.cpp │ │ │ ├── CCDecorativeDisplay.h │ │ │ ├── CCDisplayFactory.cpp │ │ │ ├── CCDisplayFactory.h │ │ │ ├── CCDisplayManager.cpp │ │ │ ├── CCDisplayManager.h │ │ │ ├── CCInputDelegate.cpp │ │ │ ├── CCInputDelegate.h │ │ │ ├── CCProcessBase.cpp │ │ │ ├── CCProcessBase.h │ │ │ ├── CCSGUIReader.cpp │ │ │ ├── CCSGUIReader.h │ │ │ ├── CCSSceneReader.cpp │ │ │ ├── CCSSceneReader.h │ │ │ ├── CCSkin.cpp │ │ │ ├── CCSkin.h │ │ │ ├── CCSpriteFrameCacheHelper.cpp │ │ │ ├── CCSpriteFrameCacheHelper.h │ │ │ ├── CCTransformHelp.cpp │ │ │ ├── CCTransformHelp.h │ │ │ ├── CCTween.cpp │ │ │ ├── CCTween.h │ │ │ ├── CCUtilMath.cpp │ │ │ ├── CCUtilMath.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CocoStudio.h │ │ │ ├── DictionaryHelper.cpp │ │ │ ├── DictionaryHelper.h │ │ │ ├── ObjectFactory.cpp │ │ │ ├── ObjectFactory.h │ │ │ ├── TriggerBase.cpp │ │ │ ├── TriggerBase.h │ │ │ ├── TriggerMng.cpp │ │ │ ├── TriggerMng.h │ │ │ ├── TriggerObj.cpp │ │ │ ├── TriggerObj.h │ │ │ ├── WidgetReader │ │ │ │ ├── ButtonReader │ │ │ │ │ ├── ButtonReader.cpp │ │ │ │ │ └── ButtonReader.h │ │ │ │ ├── CheckBoxReader │ │ │ │ │ ├── CheckBoxReader.cpp │ │ │ │ │ └── CheckBoxReader.h │ │ │ │ ├── ImageViewReader │ │ │ │ │ ├── ImageViewReader.cpp │ │ │ │ │ └── ImageViewReader.h │ │ │ │ ├── LayoutReader │ │ │ │ │ ├── LayoutReader.cpp │ │ │ │ │ └── LayoutReader.h │ │ │ │ ├── ListViewReader │ │ │ │ │ ├── ListViewReader.cpp │ │ │ │ │ └── ListViewReader.h │ │ │ │ ├── LoadingBarReader │ │ │ │ │ ├── LoadingBarReader.cpp │ │ │ │ │ └── LoadingBarReader.h │ │ │ │ ├── PageViewReader │ │ │ │ │ ├── PageViewReader.cpp │ │ │ │ │ └── PageViewReader.h │ │ │ │ ├── ScrollViewReader │ │ │ │ │ ├── ScrollViewReader.cpp │ │ │ │ │ └── ScrollViewReader.h │ │ │ │ ├── SliderReader │ │ │ │ │ ├── SliderReader.cpp │ │ │ │ │ └── SliderReader.h │ │ │ │ ├── TextAtlasReader │ │ │ │ │ ├── TextAtlasReader.cpp │ │ │ │ │ └── TextAtlasReader.h │ │ │ │ ├── TextBMFontReader │ │ │ │ │ ├── TextBMFontReader.cpp │ │ │ │ │ └── TextBMFontReader.h │ │ │ │ ├── TextFieldReader │ │ │ │ │ ├── TextFieldReader.cpp │ │ │ │ │ └── TextFieldReader.h │ │ │ │ ├── TextReader │ │ │ │ │ ├── TextReader.cpp │ │ │ │ │ └── TextReader.h │ │ │ │ ├── WidgetReader.cpp │ │ │ │ ├── WidgetReader.h │ │ │ │ └── WidgetReaderProtocol.h │ │ │ └── proj.win32 │ │ │ │ ├── libCocosStudio.vcxproj │ │ │ │ ├── libCocosStudio.vcxproj.filters │ │ │ │ └── libCocosStudio.vcxproj.user │ │ └── spine │ │ │ ├── Android.mk │ │ │ ├── Animation.cpp │ │ │ ├── Animation.h │ │ │ ├── AnimationState.cpp │ │ │ ├── AnimationState.h │ │ │ ├── AnimationStateData.cpp │ │ │ ├── AnimationStateData.h │ │ │ ├── Atlas.cpp │ │ │ ├── Atlas.h │ │ │ ├── AtlasAttachmentLoader.cpp │ │ │ ├── AtlasAttachmentLoader.h │ │ │ ├── Attachment.cpp │ │ │ ├── Attachment.h │ │ │ ├── AttachmentLoader.cpp │ │ │ ├── AttachmentLoader.h │ │ │ ├── Bone.cpp │ │ │ ├── Bone.h │ │ │ ├── BoneData.cpp │ │ │ ├── BoneData.h │ │ │ ├── BoundingBoxAttachment.cpp │ │ │ ├── BoundingBoxAttachment.h │ │ │ ├── CCSkeleton.cpp │ │ │ ├── CCSkeleton.h │ │ │ ├── CCSkeletonAnimation.cpp │ │ │ ├── CCSkeletonAnimation.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Event.cpp │ │ │ ├── Event.h │ │ │ ├── EventData.cpp │ │ │ ├── EventData.h │ │ │ ├── Json.cpp │ │ │ ├── Json.h │ │ │ ├── RegionAttachment.cpp │ │ │ ├── RegionAttachment.h │ │ │ ├── Skeleton.cpp │ │ │ ├── Skeleton.h │ │ │ ├── SkeletonBounds.cpp │ │ │ ├── SkeletonBounds.h │ │ │ ├── SkeletonData.cpp │ │ │ ├── SkeletonData.h │ │ │ ├── SkeletonJson.cpp │ │ │ ├── SkeletonJson.h │ │ │ ├── Skin.cpp │ │ │ ├── Skin.h │ │ │ ├── Slot.cpp │ │ │ ├── Slot.h │ │ │ ├── SlotData.cpp │ │ │ ├── SlotData.h │ │ │ ├── extension.cpp │ │ │ ├── extension.h │ │ │ ├── proj.win32 │ │ │ ├── libSpine.vcxproj │ │ │ ├── libSpine.vcxproj.filters │ │ │ └── libSpine.vcxproj.user │ │ │ ├── spine-cocos2dx.cpp │ │ │ ├── spine-cocos2dx.h │ │ │ └── spine.h │ ├── math │ │ └── kazmath │ │ │ ├── CMakeLists.txt │ │ │ └── kazmath │ │ │ ├── CMakeLists.txt │ │ │ ├── GL │ │ │ ├── mat4stack.c │ │ │ ├── mat4stack.h │ │ │ ├── matrix.c │ │ │ └── matrix.h │ │ │ ├── aabb.c │ │ │ ├── aabb.h │ │ │ ├── kazmath.h │ │ │ ├── mat3.c │ │ │ ├── mat3.h │ │ │ ├── mat4.c │ │ │ ├── mat4.h │ │ │ ├── neon_matrix_impl.c │ │ │ ├── neon_matrix_impl.h │ │ │ ├── plane.c │ │ │ ├── plane.h │ │ │ ├── quaternion.c │ │ │ ├── quaternion.h │ │ │ ├── ray2.c │ │ │ ├── ray2.h │ │ │ ├── ray3.c │ │ │ ├── ray3.h │ │ │ ├── utility.c │ │ │ ├── utility.h │ │ │ ├── vec2.c │ │ │ ├── vec2.h │ │ │ ├── vec3.c │ │ │ ├── vec3.h │ │ │ ├── vec4.c │ │ │ └── vec4.h │ ├── network │ │ ├── Android.mk │ │ ├── CMakeLists.txt │ │ ├── HttpClient.cpp │ │ ├── HttpClient.h │ │ ├── HttpRequest.h │ │ ├── HttpResponse.h │ │ ├── SocketIO.cpp │ │ ├── SocketIO.h │ │ ├── WebSocket.cpp │ │ ├── WebSocket.h │ │ └── proj.win32 │ │ │ ├── libNetwork.vcxproj │ │ │ ├── libNetwork.vcxproj.filters │ │ │ └── libNetwork.vcxproj.user │ ├── physics │ │ ├── CCPhysicsBody.cpp │ │ ├── CCPhysicsBody.h │ │ ├── CCPhysicsContact.cpp │ │ ├── CCPhysicsContact.h │ │ ├── CCPhysicsJoint.cpp │ │ ├── CCPhysicsJoint.h │ │ ├── CCPhysicsShape.cpp │ │ ├── CCPhysicsShape.h │ │ ├── CCPhysicsWorld.cpp │ │ ├── CCPhysicsWorld.h │ │ ├── CMakeLists.txt │ │ └── chipmunk │ │ │ ├── CCPhysicsBodyInfo_chipmunk.cpp │ │ │ ├── CCPhysicsBodyInfo_chipmunk.h │ │ │ ├── CCPhysicsContactInfo_chipmunk.cpp │ │ │ ├── CCPhysicsContactInfo_chipmunk.h │ │ │ ├── CCPhysicsHelper_chipmunk.h │ │ │ ├── CCPhysicsJointInfo_chipmunk.cpp │ │ │ ├── CCPhysicsJointInfo_chipmunk.h │ │ │ ├── CCPhysicsShapeInfo_chipmunk.cpp │ │ │ ├── CCPhysicsShapeInfo_chipmunk.h │ │ │ ├── CCPhysicsWorldInfo_chipmunk.cpp │ │ │ └── CCPhysicsWorldInfo_chipmunk.h │ ├── storage │ │ ├── CMakeLists.txt │ │ └── local-storage │ │ │ ├── Android.mk │ │ │ ├── LocalStorage.cpp │ │ │ ├── LocalStorage.h │ │ │ ├── LocalStorageAndroid.cpp │ │ │ └── proj.win32 │ │ │ ├── libLocalStorage.vcxproj │ │ │ ├── libLocalStorage.vcxproj.filters │ │ │ └── libLocalStorage.vcxproj.user │ └── ui │ │ ├── Android.mk │ │ ├── CMakeLists.txt │ │ ├── CocosGUI.cpp │ │ ├── CocosGUI.h │ │ ├── GUIDefine.h │ │ ├── UIButton.cpp │ │ ├── UIButton.h │ │ ├── UICheckBox.cpp │ │ ├── UICheckBox.h │ │ ├── UIHelper.cpp │ │ ├── UIHelper.h │ │ ├── UIImageView.cpp │ │ ├── UIImageView.h │ │ ├── UILayout.cpp │ │ ├── UILayout.h │ │ ├── UILayoutDefine.cpp │ │ ├── UILayoutDefine.h │ │ ├── UILayoutParameter.cpp │ │ ├── UILayoutParameter.h │ │ ├── UIListView.cpp │ │ ├── UIListView.h │ │ ├── UILoadingBar.cpp │ │ ├── UILoadingBar.h │ │ ├── UIPageView.cpp │ │ ├── UIPageView.h │ │ ├── UIRichText.cpp │ │ ├── UIRichText.h │ │ ├── UIScrollInterface.h │ │ ├── UIScrollView.cpp │ │ ├── UIScrollView.h │ │ ├── UISlider.cpp │ │ ├── UISlider.h │ │ ├── UIText.cpp │ │ ├── UIText.h │ │ ├── UITextAtlas.cpp │ │ ├── UITextAtlas.h │ │ ├── UITextBMFont.cpp │ │ ├── UITextBMFont.h │ │ ├── UITextField.cpp │ │ ├── UITextField.h │ │ ├── UIWidget.cpp │ │ ├── UIWidget.h │ │ └── proj.win32 │ │ ├── libGUI.vcxproj │ │ ├── libGUI.vcxproj.filters │ │ └── libGUI.vcxproj.user ├── docs │ ├── CODING_STYLE.md │ ├── Groups.h │ ├── MainPage.h │ ├── RELEASE_NOTES.md │ ├── cocos2dx_portrait.png │ └── doxygen.config ├── extensions │ ├── Android.mk │ ├── CMakeLists.txt │ ├── ExtensionMacros.h │ ├── GUI │ │ ├── CCControlExtension │ │ │ ├── CCControl.cpp │ │ │ ├── CCControl.h │ │ │ ├── CCControlButton.cpp │ │ │ ├── CCControlButton.h │ │ │ ├── CCControlColourPicker.cpp │ │ │ ├── CCControlColourPicker.h │ │ │ ├── CCControlExtensions.h │ │ │ ├── CCControlHuePicker.cpp │ │ │ ├── CCControlHuePicker.h │ │ │ ├── CCControlPotentiometer.cpp │ │ │ ├── CCControlPotentiometer.h │ │ │ ├── CCControlSaturationBrightnessPicker.cpp │ │ │ ├── CCControlSaturationBrightnessPicker.h │ │ │ ├── CCControlSlider.cpp │ │ │ ├── CCControlSlider.h │ │ │ ├── CCControlStepper.cpp │ │ │ ├── CCControlStepper.h │ │ │ ├── CCControlSwitch.cpp │ │ │ ├── CCControlSwitch.h │ │ │ ├── CCControlUtils.cpp │ │ │ ├── CCControlUtils.h │ │ │ ├── CCInvocation.cpp │ │ │ ├── CCInvocation.h │ │ │ ├── CCScale9Sprite.cpp │ │ │ └── CCScale9Sprite.h │ │ ├── CCEditBox │ │ │ ├── CCEditBox.cpp │ │ │ ├── CCEditBox.h │ │ │ ├── CCEditBoxImpl.h │ │ │ ├── CCEditBoxImplAndroid.cpp │ │ │ ├── CCEditBoxImplAndroid.h │ │ │ ├── CCEditBoxImplIOS.h │ │ │ ├── CCEditBoxImplIOS.mm │ │ │ ├── CCEditBoxImplMac.h │ │ │ ├── CCEditBoxImplMac.mm │ │ │ ├── CCEditBoxImplNone.cpp │ │ │ ├── CCEditBoxImplWin.cpp │ │ │ └── CCEditBoxImplWin.h │ │ └── CCScrollView │ │ │ ├── CCScrollView.cpp │ │ │ ├── CCScrollView.h │ │ │ ├── CCTableView.cpp │ │ │ ├── CCTableView.h │ │ │ ├── CCTableViewCell.cpp │ │ │ └── CCTableViewCell.h │ ├── assets-manager │ │ ├── AssetsManager.cpp │ │ └── AssetsManager.h │ ├── cocos-ext.h │ ├── physics-nodes │ │ ├── CCPhysicsDebugNode.cpp │ │ ├── CCPhysicsDebugNode.h │ │ ├── CCPhysicsSprite.cpp │ │ └── CCPhysicsSprite.h │ └── proj.win32 │ │ ├── Win32InputBox.cpp │ │ ├── Win32InputBox.h │ │ ├── libExtensions.vcxproj │ │ ├── libExtensions.vcxproj.filters │ │ └── libExtensions.vcxproj.user ├── external │ ├── Box2D │ │ ├── Android.mk │ │ ├── Box2D.h │ │ ├── CMakeLists.txt │ │ ├── Collision │ │ │ ├── Shapes │ │ │ │ ├── b2ChainShape.cpp │ │ │ │ ├── b2ChainShape.h │ │ │ │ ├── b2CircleShape.cpp │ │ │ │ ├── b2CircleShape.h │ │ │ │ ├── b2EdgeShape.cpp │ │ │ │ ├── b2EdgeShape.h │ │ │ │ ├── b2PolygonShape.cpp │ │ │ │ ├── b2PolygonShape.h │ │ │ │ └── b2Shape.h │ │ │ ├── b2BroadPhase.cpp │ │ │ ├── b2BroadPhase.h │ │ │ ├── b2CollideCircle.cpp │ │ │ ├── b2CollideEdge.cpp │ │ │ ├── b2CollidePolygon.cpp │ │ │ ├── b2Collision.cpp │ │ │ ├── b2Collision.h │ │ │ ├── b2Distance.cpp │ │ │ ├── b2Distance.h │ │ │ ├── b2DynamicTree.cpp │ │ │ ├── b2DynamicTree.h │ │ │ ├── b2TimeOfImpact.cpp │ │ │ └── b2TimeOfImpact.h │ │ ├── Common │ │ │ ├── b2BlockAllocator.cpp │ │ │ ├── b2BlockAllocator.h │ │ │ ├── b2Draw.cpp │ │ │ ├── b2Draw.h │ │ │ ├── b2GrowableStack.h │ │ │ ├── b2Math.cpp │ │ │ ├── b2Math.h │ │ │ ├── b2Settings.cpp │ │ │ ├── b2Settings.h │ │ │ ├── b2StackAllocator.cpp │ │ │ ├── b2StackAllocator.h │ │ │ ├── b2Timer.cpp │ │ │ └── b2Timer.h │ │ ├── Dynamics │ │ │ ├── Contacts │ │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ │ ├── b2ChainAndCircleContact.h │ │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ │ ├── b2CircleContact.cpp │ │ │ │ ├── b2CircleContact.h │ │ │ │ ├── b2Contact.cpp │ │ │ │ ├── b2Contact.h │ │ │ │ ├── b2ContactSolver.cpp │ │ │ │ ├── b2ContactSolver.h │ │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ │ ├── b2PolygonContact.cpp │ │ │ │ └── b2PolygonContact.h │ │ │ ├── Joints │ │ │ │ ├── b2DistanceJoint.cpp │ │ │ │ ├── b2DistanceJoint.h │ │ │ │ ├── b2FrictionJoint.cpp │ │ │ │ ├── b2FrictionJoint.h │ │ │ │ ├── b2GearJoint.cpp │ │ │ │ ├── b2GearJoint.h │ │ │ │ ├── b2Joint.cpp │ │ │ │ ├── b2Joint.h │ │ │ │ ├── b2MotorJoint.cpp │ │ │ │ ├── b2MotorJoint.h │ │ │ │ ├── b2MouseJoint.cpp │ │ │ │ ├── b2MouseJoint.h │ │ │ │ ├── b2PrismaticJoint.cpp │ │ │ │ ├── b2PrismaticJoint.h │ │ │ │ ├── b2PulleyJoint.cpp │ │ │ │ ├── b2PulleyJoint.h │ │ │ │ ├── b2RevoluteJoint.cpp │ │ │ │ ├── b2RevoluteJoint.h │ │ │ │ ├── b2RopeJoint.cpp │ │ │ │ ├── b2RopeJoint.h │ │ │ │ ├── b2WeldJoint.cpp │ │ │ │ ├── b2WeldJoint.h │ │ │ │ ├── b2WheelJoint.cpp │ │ │ │ └── b2WheelJoint.h │ │ │ ├── b2Body.cpp │ │ │ ├── b2Body.h │ │ │ ├── b2ContactManager.cpp │ │ │ ├── b2ContactManager.h │ │ │ ├── b2Fixture.cpp │ │ │ ├── b2Fixture.h │ │ │ ├── b2Island.cpp │ │ │ ├── b2Island.h │ │ │ ├── b2TimeStep.h │ │ │ ├── b2World.cpp │ │ │ ├── b2World.h │ │ │ ├── b2WorldCallbacks.cpp │ │ │ └── b2WorldCallbacks.h │ │ ├── Rope │ │ │ ├── b2Rope.cpp │ │ │ └── b2Rope.h │ │ └── proj.win32 │ │ │ ├── Box2D.vcxproj │ │ │ ├── Box2D.vcxproj.filters │ │ │ └── Box2D.vcxproj.user │ ├── chipmunk │ │ ├── Android.mk │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── chipmunk-docs.html │ │ ├── include │ │ │ └── chipmunk │ │ │ │ ├── chipmunk.h │ │ │ │ ├── chipmunk_ffi.h │ │ │ │ ├── chipmunk_private.h │ │ │ │ ├── chipmunk_types.h │ │ │ │ ├── chipmunk_unsafe.h │ │ │ │ ├── constraints │ │ │ │ ├── cpConstraint.h │ │ │ │ ├── cpDampedRotarySpring.h │ │ │ │ ├── cpDampedSpring.h │ │ │ │ ├── cpGearJoint.h │ │ │ │ ├── cpGrooveJoint.h │ │ │ │ ├── cpPinJoint.h │ │ │ │ ├── cpPivotJoint.h │ │ │ │ ├── cpRatchetJoint.h │ │ │ │ ├── cpRotaryLimitJoint.h │ │ │ │ ├── cpSimpleMotor.h │ │ │ │ ├── cpSlideJoint.h │ │ │ │ └── util.h │ │ │ │ ├── cpArbiter.h │ │ │ │ ├── cpBB.h │ │ │ │ ├── cpBody.h │ │ │ │ ├── cpPolyShape.h │ │ │ │ ├── cpShape.h │ │ │ │ ├── cpSpace.h │ │ │ │ ├── cpSpatialIndex.h │ │ │ │ └── cpVect.h │ │ ├── proj.win32 │ │ │ ├── chipmunk.vcxproj │ │ │ ├── chipmunk.vcxproj.filters │ │ │ └── chipmunk.vcxproj.user │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── chipmunk.c │ │ │ ├── constraints │ │ │ ├── cpConstraint.c │ │ │ ├── cpDampedRotarySpring.c │ │ │ ├── cpDampedSpring.c │ │ │ ├── cpGearJoint.c │ │ │ ├── cpGrooveJoint.c │ │ │ ├── cpPinJoint.c │ │ │ ├── cpPivotJoint.c │ │ │ ├── cpRatchetJoint.c │ │ │ ├── cpRotaryLimitJoint.c │ │ │ ├── cpSimpleMotor.c │ │ │ └── cpSlideJoint.c │ │ │ ├── cpArbiter.c │ │ │ ├── cpArray.c │ │ │ ├── cpBB.c │ │ │ ├── cpBBTree.c │ │ │ ├── cpBody.c │ │ │ ├── cpCollision.c │ │ │ ├── cpHashSet.c │ │ │ ├── cpPolyShape.c │ │ │ ├── cpShape.c │ │ │ ├── cpSpace.c │ │ │ ├── cpSpaceComponent.c │ │ │ ├── cpSpaceHash.c │ │ │ ├── cpSpaceQuery.c │ │ │ ├── cpSpaceStep.c │ │ │ ├── cpSpatialIndex.c │ │ │ ├── cpSweep1D.c │ │ │ ├── cpVect.c │ │ │ └── prime.h │ ├── curl │ │ ├── include │ │ │ ├── android │ │ │ │ └── curl │ │ │ │ │ ├── curl.h │ │ │ │ │ ├── curlbuild.h │ │ │ │ │ ├── curlrules.h │ │ │ │ │ ├── curlver.h │ │ │ │ │ ├── easy.h │ │ │ │ │ ├── mprintf.h │ │ │ │ │ ├── multi.h │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ ├── typecheck-gcc.h │ │ │ │ │ └── types.h │ │ │ ├── ios │ │ │ │ └── curl │ │ │ │ │ ├── curl.h │ │ │ │ │ ├── curlbuild.h │ │ │ │ │ ├── curlrules.h │ │ │ │ │ ├── curlver.h │ │ │ │ │ ├── easy.h │ │ │ │ │ ├── mprintf.h │ │ │ │ │ ├── multi.h │ │ │ │ │ ├── stdcheaders.h │ │ │ │ │ └── typecheck-gcc.h │ │ │ └── win32 │ │ │ │ └── curl │ │ │ │ ├── curl.h │ │ │ │ ├── curlbuild.h │ │ │ │ ├── curlrules.h │ │ │ │ ├── curlver.h │ │ │ │ ├── easy.h │ │ │ │ ├── mprintf.h │ │ │ │ ├── multi.h │ │ │ │ ├── stdcheaders.h │ │ │ │ └── typecheck-gcc.h │ │ └── prebuilt │ │ │ ├── android │ │ │ ├── Android.mk │ │ │ ├── armeabi-v7a │ │ │ │ └── libcurl.a │ │ │ ├── armeabi │ │ │ │ └── libcurl.a │ │ │ └── x86 │ │ │ │ └── libcurl.a │ │ │ ├── ios │ │ │ ├── libcurl.a │ │ │ └── libcurl_arm64.a │ │ │ └── win32 │ │ │ ├── libcurl.dll │ │ │ └── libcurl_imp.lib │ ├── edtaa3func │ │ ├── edtaa3func.cpp │ │ └── edtaa3func.h │ ├── freetype2 │ │ ├── include │ │ │ ├── android │ │ │ │ ├── freetype2 │ │ │ │ │ └── freetype │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ │ ├── freetype.h │ │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ │ ├── ftcache.h │ │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ │ ├── ftcid.h │ │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ │ ├── fterrors.h │ │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ │ ├── ftimage.h │ │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ │ ├── ftlist.h │ │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ │ ├── ftmac.h │ │ │ │ │ │ ├── ftmm.h │ │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ │ ├── ftotval.h │ │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ │ ├── ftrender.h │ │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ │ ├── ftttdrv.h │ │ │ │ │ │ ├── fttypes.h │ │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ │ ├── t1tables.h │ │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ │ ├── tttables.h │ │ │ │ │ │ ├── tttags.h │ │ │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ │ ├── ios │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── ftttdrv.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── autohint.h │ │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ │ ├── ftpic.h │ │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ │ ├── ftserv.h │ │ │ │ │ │ ├── ftstream.h │ │ │ │ │ │ ├── fttrace.h │ │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ ├── psaux.h │ │ │ │ │ │ ├── pshints.h │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ │ │ └── svxf86nm.h │ │ │ │ │ │ ├── sfnt.h │ │ │ │ │ │ ├── t1types.h │ │ │ │ │ │ └── tttypes.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ │ ├── linux │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── autohint.h │ │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ │ ├── ftpic.h │ │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ │ ├── ftserv.h │ │ │ │ │ │ ├── ftstream.h │ │ │ │ │ │ ├── fttrace.h │ │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ ├── psaux.h │ │ │ │ │ │ ├── pshints.h │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ │ │ └── svxf86nm.h │ │ │ │ │ │ ├── sfnt.h │ │ │ │ │ │ ├── t1types.h │ │ │ │ │ │ └── tttypes.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ │ ├── mac │ │ │ │ ├── freetype │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ │ ├── ftheader.h │ │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ │ ├── ftoption.h │ │ │ │ │ │ └── ftstdlib.h │ │ │ │ │ ├── freetype.h │ │ │ │ │ ├── ftadvanc.h │ │ │ │ │ ├── ftautoh.h │ │ │ │ │ ├── ftbbox.h │ │ │ │ │ ├── ftbdf.h │ │ │ │ │ ├── ftbitmap.h │ │ │ │ │ ├── ftbzip2.h │ │ │ │ │ ├── ftcache.h │ │ │ │ │ ├── ftcffdrv.h │ │ │ │ │ ├── ftchapters.h │ │ │ │ │ ├── ftcid.h │ │ │ │ │ ├── fterrdef.h │ │ │ │ │ ├── fterrors.h │ │ │ │ │ ├── ftgasp.h │ │ │ │ │ ├── ftglyph.h │ │ │ │ │ ├── ftgxval.h │ │ │ │ │ ├── ftgzip.h │ │ │ │ │ ├── ftimage.h │ │ │ │ │ ├── ftincrem.h │ │ │ │ │ ├── ftlcdfil.h │ │ │ │ │ ├── ftlist.h │ │ │ │ │ ├── ftlzw.h │ │ │ │ │ ├── ftmac.h │ │ │ │ │ ├── ftmm.h │ │ │ │ │ ├── ftmodapi.h │ │ │ │ │ ├── ftmoderr.h │ │ │ │ │ ├── ftotval.h │ │ │ │ │ ├── ftoutln.h │ │ │ │ │ ├── ftpfr.h │ │ │ │ │ ├── ftrender.h │ │ │ │ │ ├── ftsizes.h │ │ │ │ │ ├── ftsnames.h │ │ │ │ │ ├── ftstroke.h │ │ │ │ │ ├── ftsynth.h │ │ │ │ │ ├── ftsystem.h │ │ │ │ │ ├── fttrigon.h │ │ │ │ │ ├── ftttdrv.h │ │ │ │ │ ├── fttypes.h │ │ │ │ │ ├── ftwinfnt.h │ │ │ │ │ ├── ftxf86.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── autohint.h │ │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ │ ├── ftpic.h │ │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ │ ├── ftserv.h │ │ │ │ │ │ ├── ftstream.h │ │ │ │ │ │ ├── fttrace.h │ │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ ├── psaux.h │ │ │ │ │ │ ├── pshints.h │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ │ │ └── svxf86nm.h │ │ │ │ │ │ ├── sfnt.h │ │ │ │ │ │ ├── t1types.h │ │ │ │ │ │ └── tttypes.h │ │ │ │ │ ├── t1tables.h │ │ │ │ │ ├── ttnameid.h │ │ │ │ │ ├── tttables.h │ │ │ │ │ ├── tttags.h │ │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ │ └── win32 │ │ │ │ ├── freetype │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ftadvanc.h │ │ │ │ ├── ftautoh.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftbzip2.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftcffdrv.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── ftcid.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftgasp.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgxval.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlcdfil.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── ftttdrv.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── ftxf86.h │ │ │ │ ├── internal │ │ │ │ │ ├── autohint.h │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ ├── ftpic.h │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ ├── ftserv.h │ │ │ │ │ ├── ftstream.h │ │ │ │ │ ├── fttrace.h │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── psaux.h │ │ │ │ │ ├── pshints.h │ │ │ │ │ ├── services │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ │ └── svxf86nm.h │ │ │ │ │ ├── sfnt.h │ │ │ │ │ ├── t1types.h │ │ │ │ │ └── tttypes.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ ├── tttags.h │ │ │ │ └── ttunpat.h │ │ │ │ └── ft2build.h │ │ └── prebuilt │ │ │ ├── android │ │ │ ├── Android.mk │ │ │ ├── armeabi-v7a │ │ │ │ └── libfreetype.a │ │ │ ├── armeabi │ │ │ │ └── libfreetype.a │ │ │ └── x86 │ │ │ │ └── libfreetype.a │ │ │ ├── ios │ │ │ ├── libfreetype.a │ │ │ └── libfreetype_arm64.a │ │ │ ├── linux │ │ │ ├── 32-bit │ │ │ │ └── libfreetype.a │ │ │ └── 64-bit │ │ │ │ └── libfreetype.a │ │ │ ├── mac │ │ │ └── libfreetype.a │ │ │ └── win32 │ │ │ └── freetype250.lib │ ├── glfw3 │ │ ├── include │ │ │ ├── mac │ │ │ │ ├── glfw3.h │ │ │ │ └── glfw3native.h │ │ │ └── win32 │ │ │ │ ├── glfw3.h │ │ │ │ └── glfw3native.h │ │ └── prebuilt │ │ │ ├── mac │ │ │ └── libglfw3.a │ │ │ └── win32 │ │ │ └── glfw3.lib │ ├── jpeg │ │ ├── include │ │ │ ├── android │ │ │ │ ├── jconfig.h │ │ │ │ ├── jerror.h │ │ │ │ ├── jmorecfg.h │ │ │ │ └── jpeglib.h │ │ │ ├── ios │ │ │ │ ├── jconfig.h │ │ │ │ ├── jmorecfg.h │ │ │ │ └── jpeglib.h │ │ │ ├── linux │ │ │ │ ├── jconfig.h │ │ │ │ ├── jmorecfg.h │ │ │ │ └── jpeglib.h │ │ │ ├── mac │ │ │ │ ├── jconfig.h │ │ │ │ ├── jmorecfg.h │ │ │ │ └── jpeglib.h │ │ │ └── win32 │ │ │ │ ├── jconfig.h │ │ │ │ ├── jmorecfg.h │ │ │ │ └── jpeglib.h │ │ └── prebuilt │ │ │ ├── android │ │ │ ├── Android.mk │ │ │ ├── armeabi-v7a │ │ │ │ └── libjpeg.a │ │ │ ├── armeabi │ │ │ │ └── libjpeg.a │ │ │ └── x86 │ │ │ │ └── libjpeg.a │ │ │ ├── ios │ │ │ ├── libjpeg.a │ │ │ └── libjpeg_arm64.a │ │ │ ├── linux │ │ │ ├── 32-bit │ │ │ │ └── libjpeg.a │ │ │ └── 64-bit │ │ │ │ └── libjpeg.a │ │ │ ├── mac │ │ │ └── libjpeg.a │ │ │ └── win32 │ │ │ └── libjpeg.lib │ ├── json │ │ ├── document.h │ │ ├── filestream.h │ │ ├── internal │ │ │ ├── pow10.h │ │ │ ├── stack.h │ │ │ └── strfunc.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── stringbuffer.h │ │ └── writer.h │ ├── linux-specific │ │ └── fmod │ │ │ ├── include │ │ │ ├── 32-bit │ │ │ │ ├── fmod.h │ │ │ │ ├── fmod.hpp │ │ │ │ ├── fmod_codec.h │ │ │ │ ├── fmod_dsp.h │ │ │ │ ├── fmod_errors.h │ │ │ │ ├── fmod_memoryinfo.h │ │ │ │ ├── fmod_output.h │ │ │ │ └── fmodlinux.h │ │ │ └── 64-bit │ │ │ │ ├── fmod.h │ │ │ │ ├── fmod.hpp │ │ │ │ ├── fmod_codec.h │ │ │ │ ├── fmod_dsp.h │ │ │ │ ├── fmod_errors.h │ │ │ │ ├── fmod_memoryinfo.h │ │ │ │ ├── fmod_output.h │ │ │ │ └── fmodlinux.h │ │ │ └── prebuilt │ │ │ ├── 32-bit │ │ │ ├── libfmodex-4.36.01.so │ │ │ ├── libfmodex.so │ │ │ ├── libfmodexL-4.36.01.so │ │ │ └── libfmodexL.so │ │ │ └── 64-bit │ │ │ ├── libfmodex64-4.38.00.so │ │ │ ├── libfmodex64.so │ │ │ ├── libfmodexL64-4.38.00.so │ │ │ └── libfmodexL64.so │ ├── png │ │ ├── include │ │ │ ├── android │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ └── pnglibconf.h │ │ │ ├── ios │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ └── pnglibconf.h │ │ │ ├── mac │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ └── pnglibconf.h │ │ │ └── win32 │ │ │ │ ├── png.h │ │ │ │ ├── pngconf.h │ │ │ │ └── pnglibconf.h │ │ └── prebuilt │ │ │ ├── android │ │ │ ├── Android.mk │ │ │ ├── armeabi-v7a │ │ │ │ └── libpng.a │ │ │ ├── armeabi │ │ │ │ └── libpng.a │ │ │ └── x86 │ │ │ │ └── libpng.a │ │ │ ├── ios │ │ │ ├── libpng.a │ │ │ └── libpng_arm64.a │ │ │ ├── mac │ │ │ └── libpng.a │ │ │ └── win32 │ │ │ └── libpng.lib │ ├── sqlite3 │ │ ├── Android.mk │ │ ├── include │ │ │ ├── sqlite3.h │ │ │ └── sqlite3ext.h │ │ └── libraries │ │ │ └── win32 │ │ │ ├── sqlite3.dll │ │ │ └── sqlite3.lib │ ├── tiff │ │ ├── include │ │ │ ├── android │ │ │ │ ├── tiff.h │ │ │ │ ├── tiffconf.h │ │ │ │ ├── tiffio.h │ │ │ │ └── tiffvers.h │ │ │ ├── ios │ │ │ │ ├── tiff.h │ │ │ │ ├── tiffconf.h │ │ │ │ ├── tiffio.h │ │ │ │ └── tiffvers.h │ │ │ ├── linux │ │ │ │ ├── tiff.h │ │ │ │ ├── tiffconf.h │ │ │ │ ├── tiffio.h │ │ │ │ └── tiffvers.h │ │ │ ├── mac │ │ │ │ ├── tiff.h │ │ │ │ ├── tiffconf.h │ │ │ │ ├── tiffio.h │ │ │ │ └── tiffvers.h │ │ │ └── win32 │ │ │ │ ├── tiff.h │ │ │ │ ├── tiffconf.h │ │ │ │ ├── tiffio.h │ │ │ │ └── tiffvers.h │ │ └── prebuilt │ │ │ ├── android │ │ │ ├── Android.mk │ │ │ ├── armeabi-v7a │ │ │ │ └── libtiff.a │ │ │ ├── armeabi │ │ │ │ └── libtiff.a │ │ │ └── x86 │ │ │ │ └── libtiff.a │ │ │ ├── ios │ │ │ ├── libtiff.a │ │ │ └── libtiff_arm64.a │ │ │ ├── linux │ │ │ ├── 32-bit │ │ │ │ └── libtiff.a │ │ │ └── 64-bit │ │ │ │ └── libtiff.a │ │ │ ├── mac │ │ │ └── libtiff.a │ │ │ └── win32 │ │ │ ├── libtiff.dll │ │ │ └── libtiff.lib │ ├── tinyxml2 │ │ ├── CMakeLists.txt │ │ ├── tinyxml2.cpp │ │ └── tinyxml2.h │ ├── unzip │ │ ├── CMakeLists.txt │ │ ├── ioapi.cpp │ │ ├── ioapi.h │ │ ├── unzip.cpp │ │ └── unzip.h │ ├── version.txt │ ├── webp │ │ ├── include │ │ │ ├── android │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ └── types.h │ │ │ ├── ios │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ └── types.h │ │ │ ├── linux │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ └── types.h │ │ │ ├── mac │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ └── types.h │ │ │ └── win32 │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ └── types.h │ │ └── prebuilt │ │ │ ├── android │ │ │ ├── Android.mk │ │ │ ├── armeabi-v7a │ │ │ │ └── libwebp.a │ │ │ ├── armeabi │ │ │ │ └── libwebp.a │ │ │ └── x86 │ │ │ │ └── libwebp.a │ │ │ ├── ios │ │ │ ├── libwebp.a │ │ │ └── libwebp_arm64.a │ │ │ ├── linux │ │ │ ├── 32-bit │ │ │ │ └── libwebp.a │ │ │ └── 64-bit │ │ │ │ └── libwebp.a │ │ │ ├── mac │ │ │ └── libwebp.a │ │ │ └── win32 │ │ │ └── libwebp.lib │ ├── websockets │ │ ├── include │ │ │ ├── android │ │ │ │ └── libwebsockets.h │ │ │ ├── ios │ │ │ │ └── libwebsockets.h │ │ │ ├── linux │ │ │ │ └── libwebsockets.h │ │ │ ├── mac │ │ │ │ └── libwebsockets.h │ │ │ └── win32 │ │ │ │ ├── libwebsockets.h │ │ │ │ └── win32helpers │ │ │ │ ├── gettimeofday.h │ │ │ │ └── websock-w32.h │ │ └── prebuilt │ │ │ ├── android │ │ │ ├── Android.mk │ │ │ ├── armeabi-v7a │ │ │ │ └── libwebsockets.a │ │ │ ├── armeabi │ │ │ │ └── libwebsockets.a │ │ │ └── x86 │ │ │ │ └── libwebsockets.a │ │ │ ├── ios │ │ │ ├── libwebsockets.a │ │ │ └── libwebsockets_arm64.a │ │ │ ├── linux │ │ │ ├── 32-bit │ │ │ │ └── libwebsockets.a │ │ │ └── 64-bit │ │ │ │ └── libwebsockets.a │ │ │ ├── mac │ │ │ └── libwebsockets.a │ │ │ └── win32 │ │ │ ├── websockets.dll │ │ │ └── websockets.lib │ └── win32-specific │ │ ├── gles │ │ ├── include │ │ │ └── OGLES │ │ │ │ └── GL │ │ │ │ ├── glew.h │ │ │ │ ├── glxew.h │ │ │ │ └── wglew.h │ │ └── prebuilt │ │ │ ├── glew32.dll │ │ │ └── glew32.lib │ │ ├── icon │ │ ├── include │ │ │ └── iconv.h │ │ └── prebuilt │ │ │ ├── iconv.dll │ │ │ └── libiconv.lib │ │ └── zlib │ │ ├── include │ │ ├── zconf.h │ │ └── zlib.h │ │ └── prebuilt │ │ ├── libzlib.lib │ │ └── zlib1.dll ├── licenses │ ├── LICENSE_CCBReader.txt │ ├── LICENSE_CCControlExtension.txt │ ├── LICENSE_JSON4Lua.txt │ ├── LICENSE_Kazmath.txt │ ├── LICENSE_LuaSocket.txt │ ├── LICENSE_SpiderMonkey.txt │ ├── LICENSE_artwork.txt │ ├── LICENSE_box2d.txt │ ├── LICENSE_chipmunk.txt │ ├── LICENSE_cocos2d-iphone.txt │ ├── LICENSE_cocos2d-x.txt │ ├── LICENSE_cocosdenshion.txt │ ├── LICENSE_curl.txt │ ├── LICENSE_js.txt │ ├── LICENSE_jsoncpp.txt │ ├── LICENSE_libjpeg.txt │ ├── LICENSE_libpng.txt │ ├── LICENSE_libtiff.txt │ ├── LICENSE_libwebsockets.txt │ ├── LICENSE_libxml2.txt │ ├── LICENSE_lua.txt │ ├── LICENSE_ogg_vorbis.txt │ ├── LICENSE_tolua++.txt │ └── LICENSE_zlib.txt └── plugin │ ├── AUTHORS │ ├── README.md │ ├── plugins │ ├── admob │ │ ├── proj.android │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── ForManifest.xml │ │ │ ├── build.xml │ │ │ ├── project.properties │ │ │ ├── sdk │ │ │ │ └── GoogleAdMobAdsSdk.jar │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── plugin │ │ │ │ └── AdsAdmob.java │ │ └── proj.ios │ │ │ ├── Admob │ │ │ ├── GADAdMobExtras.h │ │ │ ├── GADAdNetworkExtras.h │ │ │ ├── GADAdSize.h │ │ │ ├── GADBannerView.h │ │ │ ├── GADBannerViewDelegate.h │ │ │ ├── GADInterstitial.h │ │ │ ├── GADInterstitialDelegate.h │ │ │ ├── GADRequest.h │ │ │ ├── GADRequestError.h │ │ │ └── libGoogleAdMobAds.a │ │ │ ├── AdsAdmob.h │ │ │ ├── AdsAdmob.m │ │ │ ├── PluginAdmob-Prefix.pch │ │ │ └── PluginAdmob.xcodeproj │ │ │ └── project.pbxproj │ ├── alipay │ │ └── proj.android │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── ForAssets │ │ │ └── alipay_plugin.apk │ │ │ ├── ForManifest.xml │ │ │ ├── build.xml │ │ │ ├── project.properties │ │ │ ├── sdk │ │ │ └── alipay_plugin.jar │ │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ ├── AlixId.java │ │ │ ├── Base64.java │ │ │ ├── BaseHelper.java │ │ │ ├── IAPAlipay.java │ │ │ ├── MobileSecurePayHelper.java │ │ │ ├── MobileSecurePayer.java │ │ │ ├── NetworkManager.java │ │ │ ├── PartnerConfig.java │ │ │ ├── ResultChecker.java │ │ │ └── Rsa.java │ ├── flurry │ │ ├── proj.android │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── ForManifest.xml │ │ │ ├── build.xml │ │ │ ├── project.properties │ │ │ ├── sdk │ │ │ │ └── FlurryAgent.jar │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── plugin │ │ │ │ ├── AdsFlurry.java │ │ │ │ └── AnalyticsFlurry.java │ │ └── proj.ios │ │ │ ├── AdsFlurry.h │ │ │ ├── AdsFlurry.m │ │ │ ├── AnalyticsFlurry.h │ │ │ ├── AnalyticsFlurry.m │ │ │ ├── Flurry.h │ │ │ ├── FlurryAds │ │ │ ├── FlurryAdDelegate.h │ │ │ ├── FlurryAds.h │ │ │ └── libFlurryAds.a │ │ │ ├── PluginFlurry-Prefix.pch │ │ │ ├── PluginFlurry.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── libFlurry.a │ ├── googleplay │ │ └── proj.android │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── ForManifest.xml │ │ │ ├── Notes.txt │ │ │ ├── build.xml │ │ │ ├── proguard-project.txt │ │ │ ├── project.properties │ │ │ └── src │ │ │ ├── com │ │ │ └── android │ │ │ │ └── vending │ │ │ │ └── billing │ │ │ │ └── IInAppBillingService.aidl │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ ├── IAPGooglePlay.java │ │ │ └── util │ │ │ ├── Base64.java │ │ │ ├── Base64DecoderException.java │ │ │ ├── IabException.java │ │ │ ├── IabHelper.java │ │ │ ├── IabResult.java │ │ │ ├── Inventory.java │ │ │ ├── Purchase.java │ │ │ ├── Security.java │ │ │ └── SkuDetails.java │ ├── nd91 │ │ └── proj.android │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── DependProject │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── project.properties │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ ├── nd_flipin.xml │ │ │ │ ├── nd_flipin_reverse.xml │ │ │ │ ├── nd_flipout.xml │ │ │ │ └── nd_flipout_reverse.xml │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── nd_download_1.9.png │ │ │ │ ├── nd_download_2.9.png │ │ │ │ ├── nd_flip_bg.png │ │ │ │ ├── nd_slider_content_h.9.png │ │ │ │ ├── nd_slider_content_v.9.png │ │ │ │ ├── nd_slider_handle_h_1.9.png │ │ │ │ ├── nd_slider_handle_h_1_expand.9.png │ │ │ │ ├── nd_slider_handle_h_2.9.png │ │ │ │ ├── nd_slider_handle_h_2_expand.9.png │ │ │ │ ├── nd_slider_handle_v_1.9.png │ │ │ │ ├── nd_slider_handle_v_1_expand.9.png │ │ │ │ ├── nd_slider_handle_v_2.9.png │ │ │ │ ├── nd_slider_handle_v_2_expand.9.png │ │ │ │ ├── nd_slider_next_h.png │ │ │ │ ├── nd_slider_next_v.png │ │ │ │ ├── nd_slider_pre_h.png │ │ │ │ └── nd_slider_pre_v.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── nd_gcsdk_bg_tips.9.png │ │ │ │ ├── nd_gcsdk_box_bg.png │ │ │ │ ├── nd_gcsdk_box_btn_bg.png │ │ │ │ ├── nd_gcsdk_box_close.png │ │ │ │ ├── nd_gcsdk_box_label_bg.png │ │ │ │ ├── nd_gcsdk_box_logo.png │ │ │ │ ├── nd_gcsdk_box_tit_bg.png │ │ │ │ ├── nd_gcsdk_box_title_line.png │ │ │ │ ├── nd_gcsdk_exit_txt_bg.9.png │ │ │ │ ├── nd_gcsdk_gamecenter_default.png │ │ │ │ ├── nd_gcsdk_gamezone_default.png │ │ │ │ ├── nd_gcsdk_gc_logo_default.png │ │ │ │ ├── nd_gcsdk_image_default.jpg │ │ │ │ ├── nd_gcsdk_label_bg.9.png │ │ │ │ ├── nd_gcsdk_loading_bg.jpg │ │ │ │ ├── nd_gcsdk_loading_logo.png │ │ │ │ ├── nd_gcsdk_loading_pot_1.png │ │ │ │ └── nd_gcsdk_loading_pot_2.png │ │ │ │ ├── drawable │ │ │ │ ├── nd3_3rd_platform_icon.png │ │ │ │ ├── nd3_3rd_platform_icon_more.png │ │ │ │ ├── nd3_91.png │ │ │ │ ├── nd3_achieve.png │ │ │ │ ├── nd3_achievement_lock.png │ │ │ │ ├── nd3_activity_action_above_bg.9.png │ │ │ │ ├── nd3_add.png │ │ │ │ ├── nd3_agreement_logo.png │ │ │ │ ├── nd3_app_icon_default.png │ │ │ │ ├── nd3_background.png │ │ │ │ ├── nd3_background_xml.xml │ │ │ │ ├── nd3_banner.9.png │ │ │ │ ├── nd3_banner_bg.9.png │ │ │ │ ├── nd3_banner_logo.png │ │ │ │ ├── nd3_bbs_icon.png │ │ │ │ ├── nd3_bg.png │ │ │ │ ├── nd3_bizarre_image.png │ │ │ │ ├── nd3_bk1.9.png │ │ │ │ ├── nd3_bm.9.png │ │ │ │ ├── nd3_bnt_01.9.png │ │ │ │ ├── nd3_bnt_zhuxiao.png │ │ │ │ ├── nd3_bottom_bar_bg.9.png │ │ │ │ ├── nd3_button.xml │ │ │ │ ├── nd3_button1.png │ │ │ │ ├── nd3_button2.png │ │ │ │ ├── nd3_button_02.xml │ │ │ │ ├── nd3_button_130_01.png │ │ │ │ ├── nd3_button_130_03.png │ │ │ │ ├── nd3_button_278.png │ │ │ │ ├── nd3_button_action.xml │ │ │ │ ├── nd3_button_bg_02.png │ │ │ │ ├── nd3_button_bg_02_press.png │ │ │ │ ├── nd3_button_bg_dis.png │ │ │ │ ├── nd3_button_bg_dis02.png │ │ │ │ ├── nd3_button_logout.xml │ │ │ │ ├── nd3_button_long.9.png │ │ │ │ ├── nd3_button_long_press.9.png │ │ │ │ ├── nd3_button_old.xml │ │ │ │ ├── nd3_button_radio.png │ │ │ │ ├── nd3_button_x.xml │ │ │ │ ├── nd3_button_x1.png │ │ │ │ ├── nd3_check_yes.png │ │ │ │ ├── nd3_checkbox_button.xml │ │ │ │ ├── nd3_close.png │ │ │ │ ├── nd3_default_portrait.png │ │ │ │ ├── nd3_default_portrait_big.png │ │ │ │ ├── nd3_friend_del_button.xml │ │ │ │ ├── nd3_friend_section_bg.9.png │ │ │ │ ├── nd3_game_detail.png │ │ │ │ ├── nd3_game_error_bg.png │ │ │ │ ├── nd3_game_face.png │ │ │ │ ├── nd3_game_head.png │ │ │ │ ├── nd3_head_bg.png │ │ │ │ ├── nd3_headbar.png │ │ │ │ ├── nd3_horizontal_line.9.png │ │ │ │ ├── nd3_icon11.png │ │ │ │ ├── nd3_icon12.png │ │ │ │ ├── nd3_icon_01.png │ │ │ │ ├── nd3_icon_05.png │ │ │ │ ├── nd3_icon_06.png │ │ │ │ ├── nd3_icon_07.png │ │ │ │ ├── nd3_icon_08.png │ │ │ │ ├── nd3_icon_21.png │ │ │ │ ├── nd3_icon_22.png │ │ │ │ ├── nd3_icon_error.png │ │ │ │ ├── nd3_icon_more01.png │ │ │ │ ├── nd3_icon_more02.png │ │ │ │ ├── nd3_icon_more03.png │ │ │ │ ├── nd3_icon_more04.png │ │ │ │ ├── nd3_icon_more05.png │ │ │ │ ├── nd3_icon_more06.png │ │ │ │ ├── nd3_icon_point.png │ │ │ │ ├── nd3_icon_selected.png │ │ │ │ ├── nd3_image81.png │ │ │ │ ├── nd3_image82.png │ │ │ │ ├── nd3_image_48_bg.xml │ │ │ │ ├── nd3_input_1.9.png │ │ │ │ ├── nd3_input_2.9.png │ │ │ │ ├── nd3_input_bg.png │ │ │ │ ├── nd3_input_gray.xml │ │ │ │ ├── nd3_inputbox_bg1.9.png │ │ │ │ ├── nd3_invite_image.png │ │ │ │ ├── nd3_leaderboard_default.png │ │ │ │ ├── nd3_line.9.png │ │ │ │ ├── nd3_list_bg.9.png │ │ │ │ ├── nd3_list_separator.png │ │ │ │ ├── nd3_mainfriend_1.png │ │ │ │ ├── nd3_mainfriend_2.png │ │ │ │ ├── nd3_maingame_1.png │ │ │ │ ├── nd3_maingame_2.png │ │ │ │ ├── nd3_mainmessage_1.png │ │ │ │ ├── nd3_mainmessage_2.png │ │ │ │ ├── nd3_mainmore_1.png │ │ │ │ ├── nd3_mainmore_2.png │ │ │ │ ├── nd3_mainpage_1.png │ │ │ │ ├── nd3_mainpage_2.png │ │ │ │ ├── nd3_message_item_1_bg.xml │ │ │ │ ├── nd3_message_item_2_bg.xml │ │ │ │ ├── nd3_mood_bg.9.png │ │ │ │ ├── nd3_msge_friend.9.png │ │ │ │ ├── nd3_msge_owen.9.png │ │ │ │ ├── nd3_new_message.9.png │ │ │ │ ├── nd3_new_message_flag.png │ │ │ │ ├── nd3_pay_checkbox_button.xml │ │ │ │ ├── nd3_platform_logo.png │ │ │ │ ├── nd3_portrait_edit_bg.png │ │ │ │ ├── nd3_progress_large.xml │ │ │ │ ├── nd3_rank_1.png │ │ │ │ ├── nd3_rank_2.png │ │ │ │ ├── nd3_rank_3.png │ │ │ │ ├── nd3_rank_choice_left_1.9.png │ │ │ │ ├── nd3_rank_choice_left_2.9.png │ │ │ │ ├── nd3_rank_choice_left_btn_bg.xml │ │ │ │ ├── nd3_rank_choice_middle_1.9.png │ │ │ │ ├── nd3_rank_choice_middle_2.9.png │ │ │ │ ├── nd3_rank_choice_middle_btn_bg.xml │ │ │ │ ├── nd3_rank_choice_right_1.9.png │ │ │ │ ├── nd3_rank_choice_right_2.9.png │ │ │ │ ├── nd3_rank_choice_right_btn_bg.xml │ │ │ │ ├── nd3_rank_image.png │ │ │ │ ├── nd3_redbtn.9.png │ │ │ │ ├── nd3_redbtn_down.9.png │ │ │ │ ├── nd3_regist_checked.xml │ │ │ │ ├── nd3_round_bg.xml │ │ │ │ ├── nd3_search_edit_bg.9.png │ │ │ │ ├── nd3_search_edit_left.9.png │ │ │ │ ├── nd3_search_layout_bg.9.png │ │ │ │ ├── nd3_showplayer.png │ │ │ │ ├── nd3_square_checkbox_button.xml │ │ │ │ ├── nd3_switch_image.png │ │ │ │ ├── nd3_switch_image_white.png │ │ │ │ ├── nd3_title_bar_action_btn.9.png │ │ │ │ ├── nd3_title_bar_action_btn_pressed.9.png │ │ │ │ ├── nd3_title_bar_action_btn_xml.xml │ │ │ │ ├── nd3_title_bar_bg.9.png │ │ │ │ ├── nd3_title_bar_return_btn.9.png │ │ │ │ ├── nd3_title_bar_return_btn_pressed.9.png │ │ │ │ ├── nd3_title_bar_return_btn_xml.xml │ │ │ │ ├── nd3_user_item_bg.xml │ │ │ │ ├── nd3_vertical_line.png │ │ │ │ ├── nd3_white_bg.9.png │ │ │ │ ├── nd_ad.png │ │ │ │ ├── nd_blue.xml │ │ │ │ ├── nd_blue1.9.png │ │ │ │ ├── nd_blue2.9.png │ │ │ │ ├── nd_book.png │ │ │ │ ├── nd_btn_add.png │ │ │ │ ├── nd_btn_add_press.png │ │ │ │ ├── nd_btn_buy.9.png │ │ │ │ ├── nd_btn_buy_press.9.png │ │ │ │ ├── nd_btn_reduce.png │ │ │ │ ├── nd_btn_reduce_press.png │ │ │ │ ├── nd_button_action_add.xml │ │ │ │ ├── nd_button_action_buy.xml │ │ │ │ ├── nd_button_action_reduce.xml │ │ │ │ ├── nd_c_blur.xml │ │ │ │ ├── nd_c_blur1.9.png │ │ │ │ ├── nd_c_blur2.9.png │ │ │ │ ├── nd_change_account.png │ │ │ │ ├── nd_direct_login.9.png │ │ │ │ ├── nd_direct_logo.png │ │ │ │ ├── nd_download.xml │ │ │ │ ├── nd_gamecoin.png │ │ │ │ ├── nd_gcsdk_bezel_border.9.png │ │ │ │ ├── nd_gcsdk_bezel_mask.9.png │ │ │ │ ├── nd_goods_count_input_bg.9.png │ │ │ │ ├── nd_goods_default.png │ │ │ │ ├── nd_goods_detail_default.png │ │ │ │ ├── nd_goods_limit_stock.png │ │ │ │ ├── nd_goods_limit_time.png │ │ │ │ ├── nd_goods_no_stock.png │ │ │ │ ├── nd_goods_price_down.png │ │ │ │ ├── nd_green.xml │ │ │ │ ├── nd_green1.9.png │ │ │ │ ├── nd_green2.9.png │ │ │ │ ├── nd_input.9.png │ │ │ │ ├── nd_leaderboard_left_1.9.png │ │ │ │ ├── nd_leaderboard_left_2.9.png │ │ │ │ ├── nd_leaderboard_left_btn_bg.xml │ │ │ │ ├── nd_leaderboard_right_1.9.png │ │ │ │ ├── nd_leaderboard_right_2.9.png │ │ │ │ ├── nd_leaderboard_right_btn_bg.xml │ │ │ │ ├── nd_list_btn_delete_normal.9.png │ │ │ │ ├── nd_list_btn_delete_pressed.9.png │ │ │ │ ├── nd_list_btn_delete_selector.xml │ │ │ │ ├── nd_login_btn_land_selector.xml │ │ │ │ ├── nd_login_btn_normal_land.9.png │ │ │ │ ├── nd_login_btn_normal_portrait.9.png │ │ │ │ ├── nd_login_btn_portrait_selector.xml │ │ │ │ ├── nd_login_btn_pressed_land.9.png │ │ │ │ ├── nd_login_btn_pressed_portrait.9.png │ │ │ │ ├── nd_logo48.png │ │ │ │ ├── nd_ordinary.png │ │ │ │ ├── nd_register_btn_normal_portrait.9.png │ │ │ │ ├── nd_register_btn_portrait_selector.xml │ │ │ │ ├── nd_register_btn_pressed_portrait.9.png │ │ │ │ ├── nd_satisfied.png │ │ │ │ ├── nd_service.png │ │ │ │ ├── nd_slider_handle_h.xml │ │ │ │ ├── nd_slider_handle_h_expand.xml │ │ │ │ ├── nd_slider_handle_v.xml │ │ │ │ ├── nd_slider_handle_v_expand.xml │ │ │ │ ├── nd_theme.png │ │ │ │ ├── nd_true.png │ │ │ │ ├── nd_unsatisfied.png │ │ │ │ ├── nd_warn.png │ │ │ │ ├── nd_white_btn.xml │ │ │ │ ├── nd_white_btn_1.9.png │ │ │ │ ├── nd_white_btn_2.9.png │ │ │ │ ├── nd_winning.png │ │ │ │ └── nd_xline.png │ │ │ │ ├── layout │ │ │ │ ├── nd3_account_bind_bind.xml │ │ │ │ ├── nd3_account_bind_register.xml │ │ │ │ ├── nd3_account_email_item.xml │ │ │ │ ├── nd3_account_login.xml │ │ │ │ ├── nd3_account_login_item.xml │ │ │ │ ├── nd3_account_login_land.xml │ │ │ │ ├── nd3_account_login_other_item.xml │ │ │ │ ├── nd3_account_login_portrait.xml │ │ │ │ ├── nd3_account_oauth_bind.xml │ │ │ │ ├── nd3_account_official.xml │ │ │ │ ├── nd3_account_official_landscape.xml │ │ │ │ ├── nd3_account_official_portrait.xml │ │ │ │ ├── nd3_account_other_login.xml │ │ │ │ ├── nd3_account_register.xml │ │ │ │ ├── nd3_account_register_agreement.xml │ │ │ │ ├── nd3_account_register_phone.xml │ │ │ │ ├── nd3_account_register_quick.xml │ │ │ │ ├── nd3_account_secret_find.xml │ │ │ │ ├── nd3_account_secret_set.xml │ │ │ │ ├── nd3_account_sina.xml │ │ │ │ ├── nd3_achieve_detail.xml │ │ │ │ ├── nd3_activity_action_template.xml │ │ │ │ ├── nd3_activity_content_reg_template_1.xml │ │ │ │ ├── nd3_activity_content_reg_template_2.xml │ │ │ │ ├── nd3_activity_content_reg_template_2_ext.xml │ │ │ │ ├── nd3_activity_content_reg_template_3.xml │ │ │ │ ├── nd3_activity_content_reg_template_4.xml │ │ │ │ ├── nd3_activity_detail.xml │ │ │ │ ├── nd3_activity_detail_plus_image.xml │ │ │ │ ├── nd3_activity_detail_plus_list.xml │ │ │ │ ├── nd3_activity_detail_plus_list_ext.xml │ │ │ │ ├── nd3_activity_head_reg.xml │ │ │ │ ├── nd3_activity_no_action_template.xml │ │ │ │ ├── nd3_app_feedback.xml │ │ │ │ ├── nd3_app_item.xml │ │ │ │ ├── nd3_app_property.xml │ │ │ │ ├── nd3_banner_layout.xml │ │ │ │ ├── nd3_blank_listview.xml │ │ │ │ ├── nd3_bottom_bar.xml │ │ │ │ ├── nd3_category_item.xml │ │ │ │ ├── nd3_category_plus_image_item.xml │ │ │ │ ├── nd3_control_center.xml │ │ │ │ ├── nd3_dispatch_search_friend.xml │ │ │ │ ├── nd3_empty_listview.xml │ │ │ │ ├── nd3_frame.xml │ │ │ │ ├── nd3_friend_home.xml │ │ │ │ ├── nd3_friend_remark_setting.xml │ │ │ │ ├── nd3_friend_section.xml │ │ │ │ ├── nd3_friend_section_list_item.xml │ │ │ │ ├── nd3_friend_section_panel.xml │ │ │ │ ├── nd3_game_content.xml │ │ │ │ ├── nd3_game_main.xml │ │ │ │ ├── nd3_home.xml │ │ │ │ ├── nd3_home_land.xml │ │ │ │ ├── nd3_home_personal.xml │ │ │ │ ├── nd3_home_portrait.xml │ │ │ │ ├── nd3_invite_friend.xml │ │ │ │ ├── nd3_invite_friend_choice.xml │ │ │ │ ├── nd3_invite_friend_item.xml │ │ │ │ ├── nd3_leaderboard_category.xml │ │ │ │ ├── nd3_leaderboard_list_item.xml │ │ │ │ ├── nd3_listview_footer.xml │ │ │ │ ├── nd3_listview_footer_ext.xml │ │ │ │ ├── nd3_listview_template.xml │ │ │ │ ├── nd3_listview_template_no_divider.xml │ │ │ │ ├── nd3_mesg_main.xml │ │ │ │ ├── nd3_message_friendmsge_list.xml │ │ │ │ ├── nd3_message_main.xml │ │ │ │ ├── nd3_message_receive_item.xml │ │ │ │ ├── nd3_message_record_item.xml │ │ │ │ ├── nd3_message_send.xml │ │ │ │ ├── nd3_message_send_item.xml │ │ │ │ ├── nd3_more_about.xml │ │ │ │ ├── nd3_more_account.xml │ │ │ │ ├── nd3_more_bean_recharge.xml │ │ │ │ ├── nd3_more_consume_detail.xml │ │ │ │ ├── nd3_more_consumes.xml │ │ │ │ ├── nd3_more_info.xml │ │ │ │ ├── nd3_more_info_edit_head_dialog.xml │ │ │ │ ├── nd3_more_more.xml │ │ │ │ ├── nd3_more_no_password.xml │ │ │ │ ├── nd3_more_password.xml │ │ │ │ ├── nd3_more_permission.xml │ │ │ │ ├── nd3_more_recharge_detail.xml │ │ │ │ ├── nd3_more_recharges.xml │ │ │ │ ├── nd3_more_records.xml │ │ │ │ ├── nd3_more_records_item.xml │ │ │ │ ├── nd3_myfriend.xml │ │ │ │ ├── nd3_network_error.xml │ │ │ │ ├── nd3_normal_search.xml │ │ │ │ ├── nd3_pay_friend_item.xml │ │ │ │ ├── nd3_pay_pass.xml │ │ │ │ ├── nd3_pay_password_check.xml │ │ │ │ ├── nd3_pay_products_item.xml │ │ │ │ ├── nd3_pay_select_friend.xml │ │ │ │ ├── nd3_pay_template.xml │ │ │ │ ├── nd3_person_info_detail.xml │ │ │ │ ├── nd3_personinfo.xml │ │ │ │ ├── nd3_progressbar.xml │ │ │ │ ├── nd3_recharge_record.xml │ │ │ │ ├── nd3_searchfriend_condition.xml │ │ │ │ ├── nd3_share_bind_account_item.xml │ │ │ │ ├── nd3_share_sina.xml │ │ │ │ ├── nd3_share_unbind_account_item.xml │ │ │ │ ├── nd3_stranger_home.xml │ │ │ │ ├── nd3_sysmessage_detail_action.xml │ │ │ │ ├── nd3_sysmessage_detail_app.xml │ │ │ │ ├── nd3_sysmessage_detail_no_action.xml │ │ │ │ ├── nd3_sysmessage_head_reg.xml │ │ │ │ ├── nd3_thirdplatform_item.xml │ │ │ │ ├── nd3_title_bar.xml │ │ │ │ ├── nd3_user_fangle.xml │ │ │ │ ├── nd3_user_fangle_ext.xml │ │ │ │ ├── nd3_user_item.xml │ │ │ │ ├── nd3_user_item_divider.xml │ │ │ │ ├── nd3_user_message.xml │ │ │ │ ├── nd3_user_message_switcher.xml │ │ │ │ ├── nd3_version_update.xml │ │ │ │ ├── nd3_write_message.xml │ │ │ │ ├── nd_account_list_item.xml │ │ │ │ ├── nd_account_manage.xml │ │ │ │ ├── nd_bind_phone_lottery.xml │ │ │ │ ├── nd_bind_phone_number.xml │ │ │ │ ├── nd_bind_phone_number_result.xml │ │ │ │ ├── nd_bind_phone_number_tip.xml │ │ │ │ ├── nd_bind_phone_number_unactivity_tip.xml │ │ │ │ ├── nd_check_version.xml │ │ │ │ ├── nd_feedback_faq.xml │ │ │ │ ├── nd_feedback_faq_list.xml │ │ │ │ ├── nd_feedback_fb.xml │ │ │ │ ├── nd_feedback_menu.xml │ │ │ │ ├── nd_feedback_menu_item.xml │ │ │ │ ├── nd_feedback_my_fb_item.xml │ │ │ │ ├── nd_feedback_my_fb_list.xml │ │ │ │ ├── nd_feedback_pj_landscape.xml │ │ │ │ ├── nd_feedback_pj_portrait.xml │ │ │ │ ├── nd_feedback_reply.xml │ │ │ │ ├── nd_feedback_reply_bottom.xml │ │ │ │ ├── nd_feedback_reply_item_left.xml │ │ │ │ ├── nd_feedback_reply_item_right.xml │ │ │ │ ├── nd_find_password.xml │ │ │ │ ├── nd_gcsdk_custom_toast.xml │ │ │ │ ├── nd_gcsdk_exitpage.xml │ │ │ │ ├── nd_gcsdk_pausepage.xml │ │ │ │ ├── nd_gcsdk_project_view_type_1.xml │ │ │ │ ├── nd_gcsdk_project_view_type_2.xml │ │ │ │ ├── nd_gcsdk_project_view_type_3.xml │ │ │ │ ├── nd_goods_detail.xml │ │ │ │ ├── nd_goods_list.xml │ │ │ │ ├── nd_goods_list_item.xml │ │ │ │ ├── nd_leaderboard.xml │ │ │ │ ├── nd_leaderboard_list_header.xml │ │ │ │ ├── nd_leaderboard_switcher_landscape_1.xml │ │ │ │ ├── nd_leaderboard_switcher_portrait_1.xml │ │ │ │ ├── nd_login_director.xml │ │ │ │ ├── nd_set_password.xml │ │ │ │ ├── nd_softpromotion_flipitem.xml │ │ │ │ ├── nd_softpromotion_listitem.xml │ │ │ │ ├── nd_softpromotion_slider_h.xml │ │ │ │ ├── nd_softpromotion_slider_item.xml │ │ │ │ ├── nd_softpromotion_slider_v.xml │ │ │ │ ├── nd_softwarepromotion.xml │ │ │ │ └── nd_unbind_phone_number.xml │ │ │ │ ├── raw │ │ │ │ └── nd_res.zip │ │ │ │ └── values │ │ │ │ ├── nd3_misc.xml │ │ │ │ ├── nd3_sdk_error_strings.xml │ │ │ │ ├── nd3_strings.xml │ │ │ │ ├── nd_gcsdk_colors.xml │ │ │ │ ├── nd_gcsdk_misc.xml │ │ │ │ ├── nd_gcsdk_strings.xml │ │ │ │ └── nd_gcsdk_styles.xml │ │ │ ├── ForManifest.xml │ │ │ ├── build.xml │ │ │ ├── project.properties │ │ │ ├── sdk │ │ │ └── NdComPlatform.jar │ │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ ├── IAPNd91.java │ │ │ ├── IAPOnlineNd91.java │ │ │ ├── Nd91Wrapper.java │ │ │ ├── SocialNd91.java │ │ │ └── UserNd91.java │ ├── qh360 │ │ └── proj.android │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── CLibs │ │ │ ├── armeabi │ │ │ │ └── libpaypalm_app_plugin_jar_360game.so │ │ │ └── mips │ │ │ │ └── libpaypalm_app_plugin_jar_360game.so │ │ │ ├── ForAssets │ │ │ ├── alipay_plugin.apk │ │ │ ├── bin_app_plugin.bin │ │ │ ├── pro.jar │ │ │ ├── res │ │ │ │ ├── Mdpi │ │ │ │ │ ├── box_off.png │ │ │ │ │ ├── box_on.png │ │ │ │ │ ├── dr_btn_normal.9.png │ │ │ │ │ ├── dr_btn_press.9.png │ │ │ │ │ ├── dropdown_btn_normal.png │ │ │ │ │ ├── dropdown_btn_normal_.png │ │ │ │ │ ├── dropdown_btn_press.png │ │ │ │ │ ├── dropdown_btn_press_.png │ │ │ │ │ ├── guardianship_btn_normal.9.png │ │ │ │ │ ├── guardianship_btn_press.9.png │ │ │ │ │ ├── input_box_.9.png │ │ │ │ │ ├── known_btn_normal.9.png │ │ │ │ │ ├── known_btn_press.9.png │ │ │ │ │ ├── zc_btn_normal.9.png │ │ │ │ │ └── zc_btn_press.9.png │ │ │ │ ├── bind_phone_button_normal.9.png │ │ │ │ ├── bind_phone_button_pressed.9.png │ │ │ │ ├── bind_phone_other_indicator.png │ │ │ │ ├── bind_phone_popup_message_arrow.png │ │ │ │ ├── bind_phone_title.png │ │ │ │ ├── box_off.png │ │ │ │ ├── box_on.png │ │ │ │ ├── button_gray_disable.9.png │ │ │ │ ├── button_gray_normal.9.png │ │ │ │ ├── button_gray_press.9.png │ │ │ │ ├── check_phone_title.png │ │ │ │ ├── checkphone_resetpwd_title.png │ │ │ │ ├── close_btn_normal.png │ │ │ │ ├── close_btn_press.png │ │ │ │ ├── del.png │ │ │ │ ├── dialog_bg.9.png │ │ │ │ ├── dot.png │ │ │ │ ├── dr_btn_normal.9.png │ │ │ │ ├── dr_btn_press.9.png │ │ │ │ ├── drop_down.9.png │ │ │ │ ├── dropdown_btn_normal.png │ │ │ │ ├── dropdown_btn_normal_.png │ │ │ │ ├── dropdown_btn_press.png │ │ │ │ ├── dropdown_btn_press_.png │ │ │ │ ├── find_pwd_title.png │ │ │ │ ├── guardianship_btn_normal.9.png │ │ │ │ ├── guardianship_btn_press.9.png │ │ │ │ ├── icon-mdpi │ │ │ │ │ ├── box_off.png │ │ │ │ │ ├── box_on.png │ │ │ │ │ ├── dr_btn_normal.9.png │ │ │ │ │ ├── dr_btn_press.9.png │ │ │ │ │ ├── input_box_.9.png │ │ │ │ │ ├── known_btn_normal.9.png │ │ │ │ │ ├── known_btn_press.9.png │ │ │ │ │ ├── post_input_bg.9.png │ │ │ │ │ └── qihoo_inficon.png │ │ │ │ ├── icon │ │ │ │ │ ├── account_setting_name_bg.9.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── bank_icon_abc.png │ │ │ │ │ ├── bank_icon_bob.png │ │ │ │ │ ├── bank_icon_boc.png │ │ │ │ │ ├── bank_icon_bos.png │ │ │ │ │ ├── bank_icon_ccb.png │ │ │ │ │ ├── bank_icon_ceb.png │ │ │ │ │ ├── bank_icon_cib.png │ │ │ │ │ ├── bank_icon_cmb.png │ │ │ │ │ ├── bank_icon_cmbc.png │ │ │ │ │ ├── bank_icon_default.png │ │ │ │ │ ├── bank_icon_ecitic.png │ │ │ │ │ ├── bank_icon_gdb.png │ │ │ │ │ ├── bank_icon_gzcb.png │ │ │ │ │ ├── bank_icon_hxb.png │ │ │ │ │ ├── bank_icon_icbc.png │ │ │ │ │ ├── bank_icon_pingan.png │ │ │ │ │ ├── bank_icon_psbc.png │ │ │ │ │ ├── bank_icon_sdb.png │ │ │ │ │ ├── bank_icon_spdb.png │ │ │ │ │ ├── bank_name_bg.9.png │ │ │ │ │ ├── bg_pao_my.9.png │ │ │ │ │ ├── bg_pao_my_h.9.png │ │ │ │ │ ├── bg_pao_you.9.png │ │ │ │ │ ├── bg_pao_you_h.9.png │ │ │ │ │ ├── bind_phone.png │ │ │ │ │ ├── box_off.png │ │ │ │ │ ├── box_on.png │ │ │ │ │ ├── btn_back_normal.9.png │ │ │ │ │ ├── btn_back_pressed.9.png │ │ │ │ │ ├── btn_post_try_normal.9.png │ │ │ │ │ ├── btn_post_try_pressed.9.png │ │ │ │ │ ├── btn_post_view_normal.9.png │ │ │ │ │ ├── btn_post_view_pressed.9.png │ │ │ │ │ ├── bubble_bg_h.9.png │ │ │ │ │ ├── bubble_bg_s.9.png │ │ │ │ │ ├── can_not_open_page_3g_close.png │ │ │ │ │ ├── can_not_open_page_3g_open.png │ │ │ │ │ ├── can_not_open_page_anzai.png │ │ │ │ │ ├── can_not_open_page_line.png │ │ │ │ │ ├── can_not_open_page_refresh.png │ │ │ │ │ ├── can_not_open_page_wifi_close.png │ │ │ │ │ ├── can_not_open_page_wifi_open.png │ │ │ │ │ ├── close_btn_normal.png │ │ │ │ │ ├── close_btn_press.png │ │ │ │ │ ├── credit_date.png │ │ │ │ │ ├── credit_verify.png │ │ │ │ │ ├── del.png │ │ │ │ │ ├── dialog_bg.9.png │ │ │ │ │ ├── dr_btn_disable.9.png │ │ │ │ │ ├── dr_btn_normal.9.png │ │ │ │ │ ├── dr_btn_press.9.png │ │ │ │ │ ├── drop_down.9.png │ │ │ │ │ ├── dropdown_normal.9.png │ │ │ │ │ ├── dropdown_pressed.9.png │ │ │ │ │ ├── faq_list_item_bg_normal.9.png │ │ │ │ │ ├── faq_list_item_bg_select.9.png │ │ │ │ │ ├── go_bbs_btn_normal.9.png │ │ │ │ │ ├── go_bbs_btn_press.9.png │ │ │ │ │ ├── header_icon.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── icon_info.png │ │ │ │ │ ├── input_bottom_bg.9.png │ │ │ │ │ ├── input_box_.9.png │ │ │ │ │ ├── input_img_normal.png │ │ │ │ │ ├── input_img_pressed.png │ │ │ │ │ ├── jian.png │ │ │ │ │ ├── known_btn_normal.9.png │ │ │ │ │ ├── known_btn_press.9.png │ │ │ │ │ ├── left_s_bg.9.png │ │ │ │ │ ├── line.9.png │ │ │ │ │ ├── list_bg_H.9.png │ │ │ │ │ ├── list_bg_normal.9.png │ │ │ │ │ ├── money_line.9.png │ │ │ │ │ ├── pay_credit_selected_tag.png │ │ │ │ │ ├── pay_credit_unselected_tag.png │ │ │ │ │ ├── pay_float_bg.9.png │ │ │ │ │ ├── pay_float_card_bg.9.png │ │ │ │ │ ├── pay_float_close_d.png │ │ │ │ │ ├── pay_float_close_p.png │ │ │ │ │ ├── pay_float_failure.png │ │ │ │ │ ├── pay_float_input_clean.png │ │ │ │ │ ├── pay_float_input_clean_pressed.png │ │ │ │ │ ├── pay_float_ok.png │ │ │ │ │ ├── pay_float_other_pay_d.9.png │ │ │ │ │ ├── pay_float_other_pay_p.9.png │ │ │ │ │ ├── pay_float_tiket_left.png │ │ │ │ │ ├── pay_float_tiket_middle.png │ │ │ │ │ ├── pay_float_tiket_right.png │ │ │ │ │ ├── pay_float_translating.png │ │ │ │ │ ├── pay_quick_icon.png │ │ │ │ │ ├── pay_record_tab_selected.9.png │ │ │ │ │ ├── pay_user_guide_bg.9.png │ │ │ │ │ ├── pay_user_guide_btn.9.png │ │ │ │ │ ├── pay_user_guide_guard.png │ │ │ │ │ ├── pay_user_guide_money.png │ │ │ │ │ ├── pay_user_guide_page.png │ │ │ │ │ ├── pay_user_guide_page_now.png │ │ │ │ │ ├── paybtn_default.9.png │ │ │ │ │ ├── paybtn_disable.9.png │ │ │ │ │ ├── paybtn_pressed.9.png │ │ │ │ │ ├── popup_menu_bg.9.png │ │ │ │ │ ├── popup_menu_icon.png │ │ │ │ │ ├── post_alert_fail.9.png │ │ │ │ │ ├── post_alert_ok.9.png │ │ │ │ │ ├── post_fail_icon.png │ │ │ │ │ ├── post_image_opt_add.png │ │ │ │ │ ├── post_image_opt_bg.9.png │ │ │ │ │ ├── post_image_opt_del.png │ │ │ │ │ ├── post_img_bg.9.png │ │ │ │ │ ├── post_input_bg.9.png │ │ │ │ │ ├── post_no_img_normal.png │ │ │ │ │ ├── post_ok_icon.png │ │ │ │ │ ├── qib_balance_dot.png │ │ │ │ │ ├── qib_refresh_btn_disabled.9.png │ │ │ │ │ ├── qib_refresh_btn_normal.9.png │ │ │ │ │ ├── qib_refresh_btn_pressed.9.png │ │ │ │ │ ├── qib_refresh_land_btn_disabled.9.png │ │ │ │ │ ├── qib_refresh_land_btn_normal.9.png │ │ │ │ │ ├── qib_refresh_land_btn_pressed.9.png │ │ │ │ │ ├── qihoo_btn_red_disabled.9.png │ │ │ │ │ ├── qihoo_btn_red_normal.9.png │ │ │ │ │ ├── qihoo_btn_red_pressed.9.png │ │ │ │ │ ├── qihoo_button_normal.9.png │ │ │ │ │ ├── qihoo_button_orange_disabled.9.png │ │ │ │ │ ├── qihoo_button_pressed.9.png │ │ │ │ │ ├── qihoo_credit_binder_selected.9.png │ │ │ │ │ ├── qihoo_credit_bingder_unselected.9.png │ │ │ │ │ ├── qihoo_gray_button_normal.9.png │ │ │ │ │ ├── qihoo_gray_button_press.9.png │ │ │ │ │ ├── qihoo_inficon.png │ │ │ │ │ ├── qihoo_info.png │ │ │ │ │ ├── qihoo_listitem_bg.9.png │ │ │ │ │ ├── qihoo_listitem_bg_pressed_v.9.png │ │ │ │ │ ├── qihoo_listitem_bg_v.9.png │ │ │ │ │ ├── qihoo_loadingmotion.png │ │ │ │ │ ├── qihoo_pay_dialog_bg.9.png │ │ │ │ │ ├── qihoo_pay_success_bindphone_arrow.png │ │ │ │ │ ├── qihoo_pay_success_bindphone_bg.9.png │ │ │ │ │ ├── qihoo_pay_success_bindphone_icon.png │ │ │ │ │ ├── qihoo_pay_sucess.png │ │ │ │ │ ├── qihoo_popup_bg.9.png │ │ │ │ │ ├── qihoo_popup_title.9.png │ │ │ │ │ ├── qihoo_pup_bg.9.png │ │ │ │ │ ├── qihoo_textbox.9.png │ │ │ │ │ ├── qihoo_xianpei.png │ │ │ │ │ ├── qihoo_zhifu_bg.9.png │ │ │ │ │ ├── quit_alert_close_btn.png │ │ │ │ │ ├── quit_game_btn_normal.9.png │ │ │ │ │ ├── quit_game_btn_press.9.png │ │ │ │ │ ├── reg_logo.png │ │ │ │ │ ├── reg_title_back.png │ │ │ │ │ ├── reg_title_bg.9.png │ │ │ │ │ ├── reg_title_btn_back_normal.9.png │ │ │ │ │ ├── reg_title_btn_back_press.9.png │ │ │ │ │ ├── right_s_bg.9.png │ │ │ │ │ ├── right_s_line.9.png │ │ │ │ │ ├── right_selected_bg.9.png │ │ │ │ │ ├── select_money_bg.9.png │ │ │ │ │ ├── select_money_title.9.png │ │ │ │ │ ├── seperator_h.png │ │ │ │ │ ├── seperator_v.png │ │ │ │ │ ├── settings_bbs_normal.png │ │ │ │ │ ├── settings_bbs_pressed.png │ │ │ │ │ ├── settings_bg_left.9.png │ │ │ │ │ ├── settings_bg_right.9.png │ │ │ │ │ ├── settings_bind_phone_normal.png │ │ │ │ │ ├── settings_bind_phone_pressed.png │ │ │ │ │ ├── settings_close_normal.png │ │ │ │ │ ├── settings_close_pressed.png │ │ │ │ │ ├── settings_hide_normal.png │ │ │ │ │ ├── settings_hide_pressed.png │ │ │ │ │ ├── settings_icon_normal.png │ │ │ │ │ ├── settings_icon_pressed.png │ │ │ │ │ ├── settings_service_normal.png │ │ │ │ │ ├── settings_service_pressed.png │ │ │ │ │ ├── single_choice_checked.png │ │ │ │ │ ├── single_choice_unchecked.png │ │ │ │ │ ├── suggest_name_list_bg.9.png │ │ │ │ │ ├── t_new.9.png │ │ │ │ │ ├── tab_bg_v.9.png │ │ │ │ │ ├── tab_left_normal.9.png │ │ │ │ │ ├── tab_left_pressed.9.png │ │ │ │ │ ├── tab_right_normal.9.png │ │ │ │ │ ├── tab_right_pressed.9.png │ │ │ │ │ ├── tab_zhong_normal.9.png │ │ │ │ │ ├── tab_zhong_pressed.9.png │ │ │ │ │ ├── tip_bg.9.png │ │ │ │ │ ├── title.9.png │ │ │ │ │ ├── title_bg.9.png │ │ │ │ │ ├── toast_bg.9.png │ │ │ │ │ └── vertical_title_bg.9.png │ │ │ │ ├── input_box_.9.png │ │ │ │ ├── known_btn_normal.9.png │ │ │ │ ├── known_btn_press.9.png │ │ │ │ ├── line.9.png │ │ │ │ ├── load_success.png │ │ │ │ ├── login_bg.9.png │ │ │ │ ├── login_logo.png │ │ │ │ ├── login_onekey_bg_b.9.png │ │ │ │ ├── login_onekey_bg_t.9.png │ │ │ │ ├── login_onekey_button.9.png │ │ │ │ ├── login_onekey_cellphone.png │ │ │ │ ├── login_onekey_icon_right.png │ │ │ │ ├── login_onekey_separator.9.png │ │ │ │ ├── login_onekey_title.png │ │ │ │ ├── no_simcard_title.png │ │ │ │ ├── phone_num_get_failed_title.png │ │ │ │ ├── phone_used_dlg_title.png │ │ │ │ ├── profile_head.png │ │ │ │ ├── profile_head_pic1.png │ │ │ │ ├── profile_head_pic2.png │ │ │ │ ├── profile_head_pic3.png │ │ │ │ ├── profile_head_pic4.png │ │ │ │ ├── profile_head_pic_default.png │ │ │ │ ├── profile_left_button_icon.png │ │ │ │ ├── profile_left_button_normal.9.png │ │ │ │ ├── profile_left_button_press.9.png │ │ │ │ ├── profile_pics.9.png │ │ │ │ ├── profile_right_button_icon.png │ │ │ │ ├── profile_right_button_normal.9.png │ │ │ │ ├── profile_right_button_press.9.png │ │ │ │ ├── profile_title_bg.png │ │ │ │ ├── qihoo_loadingmotion.png │ │ │ │ ├── qihoo_logo.png │ │ │ │ ├── qihoo_pay_dialog_bg.9.png │ │ │ │ ├── qihoo_pup_bg.9.png │ │ │ │ ├── reg_360account_title.png │ │ │ │ ├── reg_logo.png │ │ │ │ ├── reg_success_title.png │ │ │ │ ├── reg_tab_bg_off.9.png │ │ │ │ ├── reg_tab_bg_on_left.9.png │ │ │ │ ├── reg_tab_bg_on_right.9.png │ │ │ │ ├── reg_tip.png │ │ │ │ ├── reg_title_back.png │ │ │ │ ├── reg_title_bg.9.png │ │ │ │ ├── reg_title_btn_back_normal.9.png │ │ │ │ ├── reg_title_btn_back_normal.png │ │ │ │ ├── reg_title_btn_back_press.9.png │ │ │ │ ├── reg_title_btn_back_press.png │ │ │ │ ├── register_logo.png │ │ │ │ ├── reset_pwd_title.png │ │ │ │ ├── select_o.png │ │ │ │ ├── switch_btn_bg.9.png │ │ │ │ ├── switch_btn_left.png │ │ │ │ ├── switch_btn_normal.9.png │ │ │ │ ├── switch_btn_press.9.png │ │ │ │ ├── tip_bg.9.png │ │ │ │ ├── title_bg.9.png │ │ │ │ ├── toast_bg.9.png │ │ │ │ ├── wait_bg.9.png │ │ │ │ ├── zc_btn_normal.9.png │ │ │ │ └── zc_btn_press.9.png │ │ │ └── upomp_bypay_config.xml │ │ │ ├── ForManifest.xml │ │ │ ├── ForRes │ │ │ ├── anim │ │ │ │ └── zsht_loading.xml │ │ │ ├── drawable-hdpi │ │ │ │ ├── upomp_bypay_bank_list_icon1.png │ │ │ │ ├── upomp_bypay_bank_list_icon2.png │ │ │ │ ├── upomp_bypay_bank_list_icon3.png │ │ │ │ ├── upomp_bypay_bank_list_title1.png │ │ │ │ ├── upomp_bypay_bank_list_title2.png │ │ │ │ ├── upomp_bypay_bg.png │ │ │ │ ├── upomp_bypay_bottom.png │ │ │ │ ├── upomp_bypay_bottom_about.png │ │ │ │ ├── upomp_bypay_bottom_line.png │ │ │ │ ├── upomp_bypay_btn_change.png │ │ │ │ ├── upomp_bypay_btn_change_click.png │ │ │ │ ├── upomp_bypay_btn_enter2_bg.png │ │ │ │ ├── upomp_bypay_btn_enter2_bg_click.png │ │ │ │ ├── upomp_bypay_btn_enter_bg.png │ │ │ │ ├── upomp_bypay_btn_enter_bg_click.png │ │ │ │ ├── upomp_bypay_btn_esc2_bg.png │ │ │ │ ├── upomp_bypay_btn_esc2_bg_click.png │ │ │ │ ├── upomp_bypay_btn_esc_bg.png │ │ │ │ ├── upomp_bypay_btn_esc_bg_click.png │ │ │ │ ├── upomp_bypay_card_btn1.png │ │ │ │ ├── upomp_bypay_card_btn2.png │ │ │ │ ├── upomp_bypay_card_btn3.png │ │ │ │ ├── upomp_bypay_card_icon1.png │ │ │ │ ├── upomp_bypay_card_on_bg.png │ │ │ │ ├── upomp_bypay_card_on_icon.png │ │ │ │ ├── upomp_bypay_card_select.png │ │ │ │ ├── upomp_bypay_card_select1.png │ │ │ │ ├── upomp_bypay_card_select2.png │ │ │ │ ├── upomp_bypay_card_select_click.png │ │ │ │ ├── upomp_bypay_cvn2.png │ │ │ │ ├── upomp_bypay_icon.png │ │ │ │ ├── upomp_bypay_icon_card.png │ │ │ │ ├── upomp_bypay_icon_jiantou.png │ │ │ │ ├── upomp_bypay_icon_pw.png │ │ │ │ ├── upomp_bypay_index_bot_bg.png │ │ │ │ ├── upomp_bypay_info_bg.png │ │ │ │ ├── upomp_bypay_info_bot1.png │ │ │ │ ├── upomp_bypay_info_bot2.png │ │ │ │ ├── upomp_bypay_info_bot3.png │ │ │ │ ├── upomp_bypay_info_bot4.png │ │ │ │ ├── upomp_bypay_info_btn1.png │ │ │ │ ├── upomp_bypay_info_btn1_click.png │ │ │ │ ├── upomp_bypay_info_btn2.png │ │ │ │ ├── upomp_bypay_info_btn2_click.png │ │ │ │ ├── upomp_bypay_info_btn3.png │ │ │ │ ├── upomp_bypay_info_btn3_click.png │ │ │ │ ├── upomp_bypay_info_btn4.png │ │ │ │ ├── upomp_bypay_info_btn4_click.png │ │ │ │ ├── upomp_bypay_info_btn5.png │ │ │ │ ├── upomp_bypay_info_btn5_click.png │ │ │ │ ├── upomp_bypay_info_btn6.png │ │ │ │ ├── upomp_bypay_info_btn6_click.png │ │ │ │ ├── upomp_bypay_info_icon1.png │ │ │ │ ├── upomp_bypay_info_icon2.png │ │ │ │ ├── upomp_bypay_info_icon3.png │ │ │ │ ├── upomp_bypay_info_icon4.png │ │ │ │ ├── upomp_bypay_info_icon5.png │ │ │ │ ├── upomp_bypay_info_icon6.png │ │ │ │ ├── upomp_bypay_info_icon7.png │ │ │ │ ├── upomp_bypay_info_left.png │ │ │ │ ├── upomp_bypay_info_right.png │ │ │ │ ├── upomp_bypay_info_select_1.png │ │ │ │ ├── upomp_bypay_info_select_2.png │ │ │ │ ├── upomp_bypay_info_top1.png │ │ │ │ ├── upomp_bypay_info_top2.png │ │ │ │ ├── upomp_bypay_info_top3.png │ │ │ │ ├── upomp_bypay_input_2.png │ │ │ │ ├── upomp_bypay_input_bg.png │ │ │ │ ├── upomp_bypay_input_bg_on.png │ │ │ │ ├── upomp_bypay_input_btn_2.png │ │ │ │ ├── upomp_bypay_input_btn_2_click.png │ │ │ │ ├── upomp_bypay_input_btn_4.png │ │ │ │ ├── upomp_bypay_input_btn_4_click.png │ │ │ │ ├── upomp_bypay_input_btn_hq.png │ │ │ │ ├── upomp_bypay_input_btn_hq_click.png │ │ │ │ ├── upomp_bypay_input_icon.png │ │ │ │ ├── upomp_bypay_keyboard_bg.png │ │ │ │ ├── upomp_bypay_keyboard_btn1_default.png │ │ │ │ ├── upomp_bypay_keyboard_btn1_on.png │ │ │ │ ├── upomp_bypay_keyboard_btn_clear_default.png │ │ │ │ ├── upomp_bypay_keyboard_btn_clear_on.png │ │ │ │ ├── upomp_bypay_keyboard_btn_enter_default.png │ │ │ │ ├── upomp_bypay_keyboard_btn_enter_on.png │ │ │ │ ├── upomp_bypay_keyboard_fh_bg.png │ │ │ │ ├── upomp_bypay_keyboard_fh_bg_on.png │ │ │ │ ├── upomp_bypay_keyboard_input_bg.png │ │ │ │ ├── upomp_bypay_keyboard_letter_a1.png │ │ │ │ ├── upomp_bypay_keyboard_letter_a2.png │ │ │ │ ├── upomp_bypay_keyboard_letter_bg.png │ │ │ │ ├── upomp_bypay_keyboard_letter_bg_on.png │ │ │ │ ├── upomp_bypay_keyboard_letter_clear_bg.png │ │ │ │ ├── upomp_bypay_keyboard_letter_clear_bg_on.png │ │ │ │ ├── upomp_bypay_keyboard_nav_bg.png │ │ │ │ ├── upomp_bypay_keyboard_number_bg.png │ │ │ │ ├── upomp_bypay_keyboard_number_bg_on.png │ │ │ │ ├── upomp_bypay_keyboard_pw_bg.png │ │ │ │ ├── upomp_bypay_loading_bg.png │ │ │ │ ├── upomp_bypay_loading_bg2.png │ │ │ │ ├── upomp_bypay_loading_logo.png │ │ │ │ ├── upomp_bypay_loading_tag.png │ │ │ │ ├── upomp_bypay_login_open_bg.png │ │ │ │ ├── upomp_bypay_main_line.png │ │ │ │ ├── upomp_bypay_member_btn1.png │ │ │ │ ├── upomp_bypay_member_btn1_click.png │ │ │ │ ├── upomp_bypay_member_btn2.png │ │ │ │ ├── upomp_bypay_member_btn2_click.png │ │ │ │ ├── upomp_bypay_open_bg.png │ │ │ │ ├── upomp_bypay_open_bg2.png │ │ │ │ ├── upomp_bypay_open_btn.png │ │ │ │ ├── upomp_bypay_open_btn_click.png │ │ │ │ ├── upomp_bypay_open_icon.png │ │ │ │ ├── upomp_bypay_psw_bg.png │ │ │ │ ├── upomp_bypay_select_card_add.png │ │ │ │ ├── upomp_bypay_select_card_bg.png │ │ │ │ ├── upomp_bypay_select_month.png │ │ │ │ ├── upomp_bypay_select_month_on.png │ │ │ │ ├── upomp_bypay_select_year.png │ │ │ │ ├── upomp_bypay_select_year_on.png │ │ │ │ ├── upomp_bypay_spinner.png │ │ │ │ ├── upomp_bypay_tips_bg.png │ │ │ │ ├── upomp_bypay_title_bg.png │ │ │ │ ├── upomp_bypay_title_btn.png │ │ │ │ ├── upomp_bypay_title_btn_click.png │ │ │ │ ├── upomp_bypay_toast_bg.png │ │ │ │ └── upomp_bypay_view_xy.png │ │ │ ├── drawable │ │ │ │ ├── upomp_bypay_btn1.xml │ │ │ │ ├── upomp_bypay_btn2.xml │ │ │ │ ├── upomp_bypay_btn3.xml │ │ │ │ ├── upomp_bypay_btn4.xml │ │ │ │ ├── upomp_bypay_btn5.xml │ │ │ │ ├── upomp_bypay_btn6.xml │ │ │ │ ├── upomp_bypay_btn_card.xml │ │ │ │ ├── upomp_bypay_btn_enter1.xml │ │ │ │ ├── upomp_bypay_btn_enter2.xml │ │ │ │ ├── upomp_bypay_btn_esc1.xml │ │ │ │ ├── upomp_bypay_btn_esc2.xml │ │ │ │ ├── upomp_bypay_btn_letter.xml │ │ │ │ ├── upomp_bypay_btn_member1.xml │ │ │ │ ├── upomp_bypay_btn_member2.xml │ │ │ │ ├── upomp_bypay_btn_month.xml │ │ │ │ ├── upomp_bypay_btn_newweb.xml │ │ │ │ ├── upomp_bypay_btn_number.xml │ │ │ │ ├── upomp_bypay_btn_set.xml │ │ │ │ ├── upomp_bypay_btn_symbol.xml │ │ │ │ ├── upomp_bypay_btn_title_esc.xml │ │ │ │ ├── upomp_bypay_btn_year.xml │ │ │ │ ├── upomp_bypay_checkbox.xml │ │ │ │ ├── upomp_bypay_input_btn2.xml │ │ │ │ ├── upomp_bypay_input_btn4.xml │ │ │ │ ├── upomp_bypay_keyboard_btn_clear.xml │ │ │ │ ├── upomp_bypay_keyboard_btn_enter.xml │ │ │ │ ├── upomp_bypay_keyboard_btn_l_clear.xml │ │ │ │ ├── upomp_bypay_open_btn_enter.xml │ │ │ │ ├── upomp_bypay_progress.xml │ │ │ │ ├── upomp_bypay_progress_init.xml │ │ │ │ ├── zsht_authcode_style.xml │ │ │ │ ├── zsht_back.9.png │ │ │ │ ├── zsht_back_pressed.9.png │ │ │ │ ├── zsht_back_style.xml │ │ │ │ ├── zsht_button.9.png │ │ │ │ ├── zsht_button_pressed.9.png │ │ │ │ ├── zsht_button_style.xml │ │ │ │ ├── zsht_get_authcode_button.9.png │ │ │ │ ├── zsht_get_authcode_button_enable.9.png │ │ │ │ ├── zsht_get_authcode_button_pressed.9.png │ │ │ │ ├── zsht_input.9.png │ │ │ │ ├── zsht_input_focused.9.png │ │ │ │ ├── zsht_input_style.xml │ │ │ │ ├── zsht_keyboard_background.9.png │ │ │ │ ├── zsht_keyboard_button.9.png │ │ │ │ ├── zsht_keyboard_title.9.png │ │ │ │ ├── zsht_line.9.png │ │ │ │ ├── zsht_loading_01.png │ │ │ │ ├── zsht_loading_02.png │ │ │ │ ├── zsht_loading_03.png │ │ │ │ ├── zsht_loading_04.png │ │ │ │ ├── zsht_loading_05.png │ │ │ │ ├── zsht_loading_06.png │ │ │ │ ├── zsht_loading_07.png │ │ │ │ ├── zsht_loading_logo.png │ │ │ │ ├── zsht_order_message.9.png │ │ │ │ ├── zsht_pp_logo.png │ │ │ │ ├── zsht_success.png │ │ │ │ ├── zsht_title.9.png │ │ │ │ └── zsht_title_image.png │ │ │ ├── layout │ │ │ │ ├── upomp_bypay_about.xml │ │ │ │ ├── upomp_bypay_about_btn.xml │ │ │ │ ├── upomp_bypay_activity_dialog.xml │ │ │ │ ├── upomp_bypay_auth_bind_card.xml │ │ │ │ ├── upomp_bypay_bindcard_credit.xml │ │ │ │ ├── upomp_bypay_bindcard_debit.xml │ │ │ │ ├── upomp_bypay_bindcard_pan.xml │ │ │ │ ├── upomp_bypay_bindcard_result.xml │ │ │ │ ├── upomp_bypay_cardlist_content.xml │ │ │ │ ├── upomp_bypay_get_pass.xml │ │ │ │ ├── upomp_bypay_image_cvn2.xml │ │ │ │ ├── upomp_bypay_keyboard_dialog.xml │ │ │ │ ├── upomp_bypay_keyboard_letter.xml │ │ │ │ ├── upomp_bypay_keyboard_num.xml │ │ │ │ ├── upomp_bypay_keyboard_symbol.xml │ │ │ │ ├── upomp_bypay_onuser_cardmanage.xml │ │ │ │ ├── upomp_bypay_onuser_change_psw.xml │ │ │ │ ├── upomp_bypay_onuser_change_tel.xml │ │ │ │ ├── upomp_bypay_onuser_tel.xml │ │ │ │ ├── upomp_bypay_onuser_usermanage.xml │ │ │ │ ├── upomp_bypay_pay_main.xml │ │ │ │ ├── upomp_bypay_pay_result.xml │ │ │ │ ├── upomp_bypay_pay_result_lose.xml │ │ │ │ ├── upomp_bypay_register.xml │ │ │ │ ├── upomp_bypay_register2.xml │ │ │ │ ├── upomp_bypay_register_result.xml │ │ │ │ ├── upomp_bypay_splash.xml │ │ │ │ ├── upomp_bypay_support_card.xml │ │ │ │ ├── upomp_bypay_support_card_list.xml │ │ │ │ ├── upomp_bypay_user_credit.xml │ │ │ │ ├── upomp_bypay_user_debit.xml │ │ │ │ ├── upomp_bypay_userprotocal.xml │ │ │ │ ├── zsht_bankcard_agreement.xml │ │ │ │ ├── zsht_bankcard_pay.xml │ │ │ │ ├── zsht_griditems.xml │ │ │ │ ├── zsht_loading_process_dialog_anim.xml │ │ │ │ ├── zsht_success_page.xml │ │ │ │ └── zsht_user_message.xml │ │ │ ├── raw │ │ │ │ └── upomp_bypay_click.ogg │ │ │ └── values │ │ │ │ ├── upomp_strings.xml │ │ │ │ ├── upomp_styles.xml │ │ │ │ ├── zsht_strings.xml │ │ │ │ └── zsht_styles.xml │ │ │ ├── build.xml │ │ │ ├── project.properties │ │ │ ├── sdk │ │ │ ├── 360SDK.jar │ │ │ ├── annotations.jar │ │ │ ├── upomp_bypay_lib.jar │ │ │ └── zsht_app_360game.jar │ │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ ├── IAPOnlineQH360.java │ │ │ ├── QH360Wrapper.java │ │ │ └── UserQH360.java │ ├── twitter │ │ ├── proj.android │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── ForManifest.xml │ │ │ ├── build.xml │ │ │ ├── project.properties │ │ │ ├── sdk │ │ │ │ ├── signpost-commonshttp4-1.2.1.1.jar │ │ │ │ ├── signpost-core-1.2.1.1.jar │ │ │ │ ├── signpost-jetty6-1.2.1.1.jar │ │ │ │ └── twitter4j-core-android-3.0.1.jar │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── plugin │ │ │ │ ├── Consts.java │ │ │ │ ├── ShareTwitter.java │ │ │ │ ├── TwitterApp.java │ │ │ │ ├── TwitterDialog.java │ │ │ │ └── TwitterSession.java │ │ └── proj.ios │ │ │ ├── FHSTwitterEngine │ │ │ ├── FHSTwitterEngine.h │ │ │ ├── FHSTwitterEngine.m │ │ │ └── OAuthConsumer │ │ │ │ ├── Categories │ │ │ │ ├── NSString+URLEncoding.h │ │ │ │ └── NSString+URLEncoding.m │ │ │ │ ├── Crytpo │ │ │ │ ├── Base64TranscoderFHS.c │ │ │ │ └── Base64TranscoderFHS.h │ │ │ │ ├── OAConsumer.h │ │ │ │ ├── OAConsumer.m │ │ │ │ ├── OAHMAC_SHA1SignatureProvider.h │ │ │ │ ├── OAHMAC_SHA1SignatureProvider.m │ │ │ │ ├── OAMutableURLRequest.h │ │ │ │ ├── OAMutableURLRequest.m │ │ │ │ ├── OARequestParameter.h │ │ │ │ ├── OARequestParameter.m │ │ │ │ ├── OAServiceTicket.h │ │ │ │ ├── OAServiceTicket.m │ │ │ │ ├── OAToken.h │ │ │ │ ├── OAToken.m │ │ │ │ └── OAuthConsumer.h │ │ │ ├── PluginTwitter-Prefix.pch │ │ │ ├── PluginTwitter.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── ShareTwitter.h │ │ │ └── ShareTwitter.m │ ├── uc │ │ └── proj.android │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── ForManifest.xml │ │ │ ├── build.xml │ │ │ ├── project.properties │ │ │ ├── sdk │ │ │ ├── UCGameSDK.jar │ │ │ └── alipay_plugin.jar │ │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ ├── IAPOnlineUC.java │ │ │ ├── UCWrapper.java │ │ │ └── UserUC.java │ ├── umeng │ │ ├── proj.android │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── ForManifest.xml │ │ │ ├── build.xml │ │ │ ├── project.properties │ │ │ ├── sdk │ │ │ │ └── umeng_sdk.jar │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── cocos2dx │ │ │ │ └── plugin │ │ │ │ └── AnalyticsUmeng.java │ │ └── proj.ios │ │ │ ├── AnalyticsUmeng.h │ │ │ ├── AnalyticsUmeng.m │ │ │ ├── MobClick.h │ │ │ ├── PluginUmeng-Prefix.pch │ │ │ ├── PluginUmeng.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── libMobClickLibrary.a │ └── weibo │ │ ├── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── ForManifest.xml │ │ ├── build.xml │ │ ├── project.properties │ │ ├── sdk │ │ │ └── weibosdk.jar │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ ├── AccessTokenKeeper.java │ │ │ └── ShareWeibo.java │ │ └── proj.ios │ │ ├── JSONKit │ │ ├── JSONKit.h │ │ └── JSONKit.m │ │ ├── PluginWeibo-Prefix.pch │ │ ├── PluginWeibo.xcodeproj │ │ └── project.pbxproj │ │ ├── ShareWeibo.h │ │ ├── ShareWeibo.m │ │ └── SinaWeibo │ │ ├── SinaWeibo.bundle │ │ └── images │ │ │ ├── close.png │ │ │ └── close@2x.png │ │ ├── SinaWeibo.h │ │ ├── SinaWeibo.m │ │ ├── SinaWeiboAuthorizeView.h │ │ ├── SinaWeiboAuthorizeView.m │ │ ├── SinaWeiboConstants.h │ │ ├── SinaWeiboRequest.h │ │ └── SinaWeiboRequest.m │ ├── protocols │ ├── PluginManager.cpp │ ├── PluginParam.cpp │ ├── include │ │ ├── PluginFactory.h │ │ ├── PluginManager.h │ │ ├── PluginParam.h │ │ ├── PluginProtocol.h │ │ ├── ProtocolAds.h │ │ ├── ProtocolAnalytics.h │ │ ├── ProtocolIAP.h │ │ ├── ProtocolShare.h │ │ ├── ProtocolSocial.h │ │ └── ProtocolUser.h │ ├── platform │ │ ├── android │ │ │ ├── PluginFactory.cpp │ │ │ ├── PluginJavaData.h │ │ │ ├── PluginJniHelper.cpp │ │ │ ├── PluginJniHelper.h │ │ │ ├── PluginJniMacros.h │ │ │ ├── PluginProtocol.cpp │ │ │ ├── PluginUtils.cpp │ │ │ ├── PluginUtils.h │ │ │ ├── ProtocolAds.cpp │ │ │ ├── ProtocolAnalytics.cpp │ │ │ ├── ProtocolIAP.cpp │ │ │ ├── ProtocolShare.cpp │ │ │ ├── ProtocolSocial.cpp │ │ │ └── ProtocolUser.cpp │ │ └── ios │ │ │ ├── AdsWrapper.h │ │ │ ├── AdsWrapper.mm │ │ │ ├── InterfaceAds.h │ │ │ ├── InterfaceAnalytics.h │ │ │ ├── InterfaceIAP.h │ │ │ ├── InterfaceShare.h │ │ │ ├── InterfaceSocial.h │ │ │ ├── InterfaceUser.h │ │ │ ├── PluginFactory.mm │ │ │ ├── PluginOCMacros.h │ │ │ ├── PluginProtocol.mm │ │ │ ├── PluginUtilsIOS.h │ │ │ ├── PluginUtilsIOS.mm │ │ │ ├── ProtocolAds.mm │ │ │ ├── ProtocolAnalytics.mm │ │ │ ├── ProtocolIAP.mm │ │ │ ├── ProtocolShare.mm │ │ │ ├── ProtocolSocial.mm │ │ │ ├── ProtocolUser.mm │ │ │ ├── ShareWrapper.h │ │ │ ├── ShareWrapper.mm │ │ │ ├── SocialWrapper.h │ │ │ ├── SocialWrapper.mm │ │ │ ├── UserWrapper.h │ │ │ └── UserWrapper.mm │ ├── proj.android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── build.xml │ │ ├── build_native.sh │ │ ├── jni │ │ │ ├── Android.mk │ │ │ └── Application.mk │ │ ├── project.properties │ │ └── src │ │ │ └── org │ │ │ └── cocos2dx │ │ │ └── plugin │ │ │ ├── AdsWrapper.java │ │ │ ├── IAPWrapper.java │ │ │ ├── InterfaceAds.java │ │ │ ├── InterfaceAnalytics.java │ │ │ ├── InterfaceIAP.java │ │ │ ├── InterfaceShare.java │ │ │ ├── InterfaceSocial.java │ │ │ ├── InterfaceUser.java │ │ │ ├── PluginWrapper.java │ │ │ ├── ShareWrapper.java │ │ │ ├── SocialWrapper.java │ │ │ └── UserWrapper.java │ └── proj.ios │ │ ├── PluginProtocol-Prefix.pch │ │ └── PluginProtocol.xcodeproj │ │ └── project.pbxproj │ └── tools │ ├── android-build.py │ ├── android │ └── build_common.xml │ ├── config.sh │ ├── gameDevGuide.sh │ ├── publish.sh │ ├── toolsForGame │ ├── addPluginForGame.sh │ ├── main.py │ ├── modifyAppMK.sh │ ├── modifyClassPath.py │ ├── modifyMK.sh │ ├── modifyManifest.py │ ├── modifyProject.py │ ├── modifyRes.sh │ └── steps.py │ └── toolsForPublish │ ├── checkEnvironment.sh │ ├── genPrebuildMK.sh │ └── publishPlugin.sh ├── proj.android ├── .classpath ├── .project ├── AndroidManifest.xml ├── README.md ├── ant.properties ├── build-cfg.json ├── build.xml ├── build_native.py ├── 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 │ └── org │ └── cocos2dx │ └── cpp │ └── Cocos2dxActivity.java ├── proj.ios_mac ├── Sushi Crush.xcodeproj │ └── project.pbxproj ├── ios │ ├── AppController.h │ ├── AppController.mm │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon-100.png │ ├── Icon-114.png │ ├── Icon-120.png │ ├── Icon-144.png │ ├── Icon-152.png │ ├── Icon-29.png │ ├── Icon-40.png │ ├── Icon-50.png │ ├── Icon-57.png │ ├── Icon-58.png │ ├── Icon-72.png │ ├── Icon-76.png │ ├── Icon-80.png │ ├── Info.plist │ ├── Prefix.pch │ ├── RootViewController.h │ ├── RootViewController.mm │ └── main.m └── mac │ ├── Icon.icns │ ├── Info.plist │ ├── Prefix.pch │ └── main.cpp ├── proj.linux └── main.cpp └── proj.win32 ├── Sushi Crush.sln ├── Sushi Crush.vcxproj ├── Sushi Crush.vcxproj.filters ├── Sushi Crush.vcxproj.user ├── build-cfg.json ├── game.rc ├── main.cpp ├── main.h ├── res └── game.ico └── resource.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Classes/AppDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Classes/AppDelegate.cpp -------------------------------------------------------------------------------- /Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Classes/AppDelegate.h -------------------------------------------------------------------------------- /Classes/PlayLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Classes/PlayLayer.cpp -------------------------------------------------------------------------------- /Classes/PlayLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Classes/PlayLayer.h -------------------------------------------------------------------------------- /Classes/SushiSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Classes/SushiSprite.cpp -------------------------------------------------------------------------------- /Classes/SushiSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Classes/SushiSprite.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/README.md -------------------------------------------------------------------------------- /Resources/w640/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Resources/w640/background.png -------------------------------------------------------------------------------- /Resources/w640/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Resources/w640/circle.png -------------------------------------------------------------------------------- /Resources/w640/colorHLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Resources/w640/colorHLeft.png -------------------------------------------------------------------------------- /Resources/w640/colorHRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Resources/w640/colorHRight.png -------------------------------------------------------------------------------- /Resources/w640/colorVDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Resources/w640/colorVDown.png -------------------------------------------------------------------------------- /Resources/w640/colorVUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Resources/w640/colorVUp.png -------------------------------------------------------------------------------- /Resources/w640/stars.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Resources/w640/stars.plist -------------------------------------------------------------------------------- /Resources/w640/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Resources/w640/stars.png -------------------------------------------------------------------------------- /Resources/w640/sushi.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Resources/w640/sushi.plist -------------------------------------------------------------------------------- /Resources/w640/sushi.pvr.ccz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/Resources/w640/sushi.pvr.ccz -------------------------------------------------------------------------------- /TexturePacker/w640/sushi.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi.tps -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_1h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_1h.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_1n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_1n.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_1v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_1v.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_2h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_2h.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_2n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_2n.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_2v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_2v.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_3h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_3h.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_3n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_3n.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_3v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_3v.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_4h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_4h.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_4n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_4n.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_4v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_4v.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_5h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_5h.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_5n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_5n.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_5v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_5v.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_6h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_6h.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_6n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_6n.png -------------------------------------------------------------------------------- /TexturePacker/w640/sushi_6v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/TexturePacker/w640/sushi_6v.png -------------------------------------------------------------------------------- /cocos2d/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/AUTHORS -------------------------------------------------------------------------------- /cocos2d/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/CHANGELOG -------------------------------------------------------------------------------- /cocos2d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/README.md -------------------------------------------------------------------------------- /cocos2d/build/BuildHelpers.CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/build/BuildHelpers.CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/build/android-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/build/android-build.py -------------------------------------------------------------------------------- /cocos2d/build/build-mingw32-clang-make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/build/build-mingw32-clang-make.sh -------------------------------------------------------------------------------- /cocos2d/build/build-mingw32-gcc-make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/build/build-mingw32-gcc-make.sh -------------------------------------------------------------------------------- /cocos2d/build/cocos2d-win32.vc2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/build/cocos2d-win32.vc2012.sln -------------------------------------------------------------------------------- /cocos2d/build/install-deps-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/build/install-deps-linux.sh -------------------------------------------------------------------------------- /cocos2d/build/win32-msvc-2012-x86.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/build/win32-msvc-2012-x86.cmd -------------------------------------------------------------------------------- /cocos2d/build/win32-msvc-2013-x86.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/build/win32-msvc-2013-x86.cmd -------------------------------------------------------------------------------- /cocos2d/cocos/2d/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/Android.mk -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCAction.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCAction.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionCamera.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionCamera.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionCatmullRom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionCatmullRom.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionCatmullRom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionCatmullRom.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionEase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionEase.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionEase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionEase.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionGrid.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionGrid.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionGrid3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionGrid3D.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionGrid3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionGrid3D.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionInstant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionInstant.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionInstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionInstant.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionInterval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionInterval.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionInterval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionInterval.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionManager.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionManager.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionPageTurn3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionPageTurn3D.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionPageTurn3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionPageTurn3D.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionProgressTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionProgressTimer.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionProgressTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionProgressTimer.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionTiledGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionTiledGrid.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionTiledGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionTiledGrid.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionTween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionTween.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCActionTween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCActionTween.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCAnimation.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCAnimation.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCAnimationCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCAnimationCache.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCAnimationCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCAnimationCache.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCAtlasNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCAtlasNode.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCAtlasNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCAtlasNode.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCClippingNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCClippingNode.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCClippingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCClippingNode.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCComponent.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCComponent.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCComponentContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCComponentContainer.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCComponentContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCComponentContainer.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCConfiguration.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCConfiguration.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCDeprecated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCDeprecated.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCDeprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCDeprecated.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCDirector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCDirector.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCDirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCDirector.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCDrawNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCDrawNode.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCDrawNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCDrawNode.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCDrawingPrimitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCDrawingPrimitives.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCDrawingPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCDrawingPrimitives.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEvent.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEvent.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventAcceleration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventAcceleration.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventAcceleration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventAcceleration.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventCustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventCustom.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventCustom.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventDispatcher.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventDispatcher.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventKeyboard.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventKeyboard.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventListener.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventListener.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventListenerAcceleration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventListenerAcceleration.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventListenerAcceleration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventListenerAcceleration.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventListenerCustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventListenerCustom.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventListenerCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventListenerCustom.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventListenerKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventListenerKeyboard.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventListenerKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventListenerKeyboard.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventListenerMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventListenerMouse.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventListenerMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventListenerMouse.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventListenerTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventListenerTouch.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventListenerTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventListenerTouch.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventMouse.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventMouse.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventTouch.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventTouch.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCEventType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCEventType.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCFont.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCFont.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCFontAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCFontAtlas.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCFontAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCFontAtlas.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCFontAtlasCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCFontAtlasCache.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCFontAtlasCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCFontAtlasCache.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCFontCharMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCFontCharMap.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCFontCharMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCFontCharMap.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCFontFNT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCFontFNT.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCFontFNT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCFontFNT.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCFontFreeType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCFontFreeType.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCFontFreeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCFontFreeType.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCGLBufferedNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCGLBufferedNode.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCGLBufferedNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCGLBufferedNode.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCGLProgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCGLProgram.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCGLProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCGLProgram.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCGrabber.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCGrabber.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCGrid.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCGrid.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCIMEDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCIMEDelegate.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCIMEDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCIMEDispatcher.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCIMEDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCIMEDispatcher.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCLabel.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCLabel.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCLabelAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCLabelAtlas.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCLabelAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCLabelAtlas.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCLabelBMFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCLabelBMFont.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCLabelBMFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCLabelBMFont.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCLabelTTF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCLabelTTF.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCLabelTTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCLabelTTF.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCLabelTextFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCLabelTextFormatter.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCLabelTextFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCLabelTextFormatter.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCLayer.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCLayer.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCMenu.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCMenu.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCMenuItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCMenuItem.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCMenuItem.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCMotionStreak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCMotionStreak.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCMotionStreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCMotionStreak.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCNode.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCNode.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCNodeGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCNodeGrid.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCNodeGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCNodeGrid.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCNotificationCenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCNotificationCenter.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCNotificationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCNotificationCenter.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCParallaxNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCParallaxNode.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCParallaxNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCParallaxNode.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCParticleBatchNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCParticleBatchNode.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCParticleBatchNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCParticleBatchNode.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCParticleExamples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCParticleExamples.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCParticleExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCParticleExamples.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCParticleSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCParticleSystem.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCParticleSystem.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCParticleSystemQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCParticleSystemQuad.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCParticleSystemQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCParticleSystemQuad.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCProfiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCProfiling.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCProfiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCProfiling.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCProgressTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCProgressTimer.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCProgressTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCProgressTimer.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCProtocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCProtocols.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCRenderTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCRenderTexture.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCRenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCRenderTexture.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCScene.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCScene.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCScheduler.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCScheduler.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCScriptSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCScriptSupport.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCScriptSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCScriptSupport.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCShaderCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCShaderCache.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCShaderCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCShaderCache.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCSprite.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCSprite.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCSpriteBatchNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCSpriteBatchNode.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCSpriteBatchNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCSpriteBatchNode.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCSpriteFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCSpriteFrame.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCSpriteFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCSpriteFrame.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCSpriteFrameCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCSpriteFrameCache.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCSpriteFrameCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCSpriteFrameCache.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTMXLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTMXLayer.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTMXLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTMXLayer.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTMXObjectGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTMXObjectGroup.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTMXObjectGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTMXObjectGroup.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTMXTiledMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTMXTiledMap.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTMXTiledMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTMXTiledMap.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTMXXMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTMXXMLParser.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTMXXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTMXXMLParser.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTextFieldTTF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTextFieldTTF.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTextFieldTTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTextFieldTTF.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTexture2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTexture2D.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTexture2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTexture2D.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTextureAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTextureAtlas.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTextureAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTextureAtlas.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTextureCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTextureCache.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTextureCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTextureCache.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTileMapAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTileMapAtlas.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTileMapAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTileMapAtlas.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTouch.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTouch.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTransition.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTransition.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTransitionPageTurn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTransitionPageTurn.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTransitionPageTurn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTransitionPageTurn.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTransitionProgress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTransitionProgress.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTransitionProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTransitionProgress.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTweenFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTweenFunction.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCTweenFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCTweenFunction.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCUserDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCUserDefault.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCUserDefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCUserDefault.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCUserDefault.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCUserDefault.mm -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCUserDefaultAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCUserDefaultAndroid.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCVertex.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CCVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CCVertex.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/cocos/2d/TGAlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/TGAlib.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/TGAlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/TGAlib.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/TransformUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/TransformUtils.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/TransformUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/TransformUtils.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ZipUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ZipUtils.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ZipUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ZipUtils.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/base64.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/base64.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccCArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccCArray.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccCArray.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccConfig.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccFPSImages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccFPSImages.c -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccFPSImages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccFPSImages.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccGLStateCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccGLStateCache.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccGLStateCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccGLStateCache.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccMacros.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShaderEx_SwitchMask_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShaderEx_SwitchMask_frag.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShader_Label_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShader_Label_frag.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShader_Label_frag_glow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShader_Label_frag_glow.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShader_Label_frag_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShader_Label_frag_outline.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShader_Label_frag_shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShader_Label_frag_shadow.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShader_Label_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShader_Label_vert.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShader_PositionColor_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShader_PositionColor_frag.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShader_PositionColor_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShader_PositionColor_vert.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShader_PositionTexture_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShader_PositionTexture_frag.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShader_PositionTexture_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShader_PositionTexture_vert.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShader_Position_uColor_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShader_Position_uColor_frag.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShader_Position_uColor_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShader_Position_uColor_vert.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShaders.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccShaders.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccTypes.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccTypes.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccUTF8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccUTF8.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccUTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccUTF8.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccUtils.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/ccUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/ccUtils.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/cocos2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/cocos2d.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/cocos2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/cocos2d.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/cocos2d.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/cocos2d.vcxproj -------------------------------------------------------------------------------- /cocos2d/cocos/2d/cocos2d.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/cocos2d.vcxproj.filters -------------------------------------------------------------------------------- /cocos2d/cocos/2d/cocos2d.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/cocos2d.vcxproj.user -------------------------------------------------------------------------------- /cocos2d/cocos/2d/cocos2d_headers.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/cocos2d_headers.props -------------------------------------------------------------------------------- /cocos2d/cocos/2d/cocos2dx-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/cocos2dx-Prefix.pch -------------------------------------------------------------------------------- /cocos2d/cocos/2d/cocos2dx.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/cocos2dx.props -------------------------------------------------------------------------------- /cocos2d/cocos/2d/firePngData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/firePngData.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCApplicationProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCApplicationProtocol.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCCommon.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCDevice.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCFileUtils.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCFileUtils.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCGLViewProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCGLViewProtocol.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCGLViewProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCGLViewProtocol.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCImage.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCImage.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCSAXParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCSAXParser.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCSAXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCSAXParser.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCThread.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/CCThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/CCThread.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/Android.mk -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/CCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/CCApplication.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/CCCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/CCCommon.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/CCDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/CCDevice.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/CCGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/CCGL.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/CCGLView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/CCGLView.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/CCGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/CCGLView.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/CCStdC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/CCStdC.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/java/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/java/.classpath -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/java/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/java/.project -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/java/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/java/build.xml -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/java/res/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/jni/DPIJni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/jni/DPIJni.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/jni/DPIJni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/jni/DPIJni.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/jni/IMEJni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/jni/IMEJni.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/jni/IMEJni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/jni/IMEJni.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/android/jni/JniHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/android/jni/JniHelper.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/apple/CCLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/apple/CCLock.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/apple/CCLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/apple/CCLock.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/apple/CCThread.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/apple/CCThread.mm -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/desktop/CCGLView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/desktop/CCGLView.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/desktop/CCGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/desktop/CCGLView.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCApplication.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCApplication.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCApplication.mm -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCCommon.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCCommon.mm -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCDevice.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCDevice.mm -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCEAGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCEAGLView.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCEAGLView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCEAGLView.mm -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCES2Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCES2Renderer.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCES2Renderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCES2Renderer.m -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCESRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCESRenderer.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCGL.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCGLView.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCGLView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCGLView.mm -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCImage.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCImage.mm -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/CCStdC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/CCStdC.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/ios/OpenGL_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/ios/OpenGL_Internal.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/linux/CCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/linux/CCApplication.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/linux/CCCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/linux/CCCommon.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/linux/CCDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/linux/CCDevice.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/linux/CCGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/linux/CCGL.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/linux/CCStdC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/linux/CCStdC.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/linux/CCStdC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/linux/CCStdC.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/mac/CCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/mac/CCApplication.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/mac/CCApplication.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/mac/CCApplication.mm -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/mac/CCCommon.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/mac/CCCommon.mm -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/mac/CCDevice.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/mac/CCDevice.mm -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/mac/CCGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/mac/CCGL.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/mac/CCStdC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/mac/CCStdC.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/win32/CCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/win32/CCApplication.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/win32/CCCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/win32/CCCommon.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/win32/CCDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/win32/CCDevice.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/win32/CCGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/win32/CCGL.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/win32/CCStdC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/win32/CCStdC.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/win32/CCStdC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/win32/CCStdC.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/platform/win32/compat/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/platform/win32/compat/stdint.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCBatchCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCBatchCommand.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCBatchCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCBatchCommand.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCCustomCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCCustomCommand.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCCustomCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCCustomCommand.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCFrustum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCFrustum.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCFrustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCFrustum.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCGroupCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCGroupCommand.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCGroupCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCGroupCommand.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCMaterialManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCMaterialManager.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCMaterialManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCMaterialManager.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCQuadCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCQuadCommand.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCQuadCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCQuadCommand.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCRenderCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCRenderCommand.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCRenderCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCRenderCommand.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCRenderCommandPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCRenderCommandPool.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCRenderMaterial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCRenderMaterial.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCRenderMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCRenderMaterial.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCRenderer.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/2d/renderer/CCRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/renderer/CCRenderer.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/uthash.h -------------------------------------------------------------------------------- /cocos2d/cocos/2d/utlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/2d/utlist.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/cocos/audio/android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/android/Android.mk -------------------------------------------------------------------------------- /cocos2d/cocos/audio/android/ccdandroidUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/android/ccdandroidUtils.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/audio/android/ccdandroidUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/android/ccdandroidUtils.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/include/Export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/include/Export.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/include/SimpleAudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/include/SimpleAudioEngine.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/ios/CDAudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/ios/CDAudioManager.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/ios/CDAudioManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/ios/CDAudioManager.m -------------------------------------------------------------------------------- /cocos2d/cocos/audio/ios/CDConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/ios/CDConfig.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/ios/CDOpenALSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/ios/CDOpenALSupport.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/ios/CDOpenALSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/ios/CDOpenALSupport.m -------------------------------------------------------------------------------- /cocos2d/cocos/audio/ios/CocosDenshion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/ios/CocosDenshion.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/ios/CocosDenshion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/ios/CocosDenshion.m -------------------------------------------------------------------------------- /cocos2d/cocos/audio/ios/SimpleAudioEngine.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/ios/SimpleAudioEngine.mm -------------------------------------------------------------------------------- /cocos2d/cocos/audio/linux/AudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/linux/AudioPlayer.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/linux/FmodAudioPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/linux/FmodAudioPlayer.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/audio/linux/FmodAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/linux/FmodAudioPlayer.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/mac/CDAudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/mac/CDAudioManager.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/mac/CDAudioManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/mac/CDAudioManager.m -------------------------------------------------------------------------------- /cocos2d/cocos/audio/mac/CDConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/mac/CDConfig.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/mac/CDOpenALSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/mac/CDOpenALSupport.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/mac/CDOpenALSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/mac/CDOpenALSupport.m -------------------------------------------------------------------------------- /cocos2d/cocos/audio/mac/CDXMacOSXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/mac/CDXMacOSXSupport.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/mac/CDXMacOSXSupport.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/mac/CDXMacOSXSupport.mm -------------------------------------------------------------------------------- /cocos2d/cocos/audio/mac/CocosDenshion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/mac/CocosDenshion.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/mac/CocosDenshion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/mac/CocosDenshion.m -------------------------------------------------------------------------------- /cocos2d/cocos/audio/mac/SimpleAudioEngine.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/mac/SimpleAudioEngine.mm -------------------------------------------------------------------------------- /cocos2d/cocos/audio/openal/OpenALDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/openal/OpenALDecoder.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/audio/openal/OpenALDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/openal/OpenALDecoder.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/win32/MciPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/win32/MciPlayer.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/audio/win32/MciPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/win32/MciPlayer.h -------------------------------------------------------------------------------- /cocos2d/cocos/audio/win32/SimpleAudioEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/audio/win32/SimpleAudioEngine.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCAffineTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCAffineTransform.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCAffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCAffineTransform.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCArray.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCArray.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCAutoreleasePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCAutoreleasePool.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCAutoreleasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCAutoreleasePool.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCBool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCBool.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCConsole.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCConsole.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCData.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCData.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCDataVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCDataVisitor.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCDataVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCDataVisitor.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCDictionary.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCDictionary.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCDouble.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCFloat.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCGeometry.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCGeometry.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCInteger.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCMap.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCNS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCNS.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCNS.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCPlatformConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCPlatformConfig.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCPlatformMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCPlatformMacros.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCRef.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCRef.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCSet.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCSet.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCString.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCString.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCValue.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCValue.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CCVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CCVector.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/cocos/base/atitc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/atitc.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/atitc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/atitc.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/etc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/etc1.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/etc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/etc1.h -------------------------------------------------------------------------------- /cocos2d/cocos/base/s3tc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/s3tc.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/base/s3tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/base/s3tc.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Android.mk -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Animation.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Atlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Atlas.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Atlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Atlas.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Attachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Attachment.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Bone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Bone.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Bone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Bone.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/BoneData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/BoneData.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/BoneData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/BoneData.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/CCSkeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/CCSkeleton.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Event.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Event.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/EventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/EventData.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Json.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Json.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Skeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Skeleton.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Skeleton.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Skin.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Skin.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Slot.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/Slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/Slot.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/SlotData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/SlotData.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/SlotData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/SlotData.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/extension.h -------------------------------------------------------------------------------- /cocos2d/cocos/editor-support/spine/spine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/editor-support/spine/spine.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/GL/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/GL/matrix.c -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/GL/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/GL/matrix.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/aabb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/aabb.c -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/aabb.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/kazmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/kazmath.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/mat3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/mat3.c -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/mat3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/mat3.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/mat4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/mat4.c -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/mat4.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/plane.c -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/plane.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/quaternion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/quaternion.c -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/quaternion.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/ray2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/ray2.c -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/ray2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/ray2.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/ray3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/ray3.c -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/ray3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/ray3.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/utility.c -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/utility.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/vec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/vec2.c -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/vec2.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/vec3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/vec3.c -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/vec3.h -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/vec4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/vec4.c -------------------------------------------------------------------------------- /cocos2d/cocos/math/kazmath/kazmath/vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/math/kazmath/kazmath/vec4.h -------------------------------------------------------------------------------- /cocos2d/cocos/network/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/network/Android.mk -------------------------------------------------------------------------------- /cocos2d/cocos/network/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/network/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/cocos/network/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/network/HttpClient.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/network/HttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/network/HttpClient.h -------------------------------------------------------------------------------- /cocos2d/cocos/network/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/network/HttpRequest.h -------------------------------------------------------------------------------- /cocos2d/cocos/network/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/network/HttpResponse.h -------------------------------------------------------------------------------- /cocos2d/cocos/network/SocketIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/network/SocketIO.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/network/SocketIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/network/SocketIO.h -------------------------------------------------------------------------------- /cocos2d/cocos/network/WebSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/network/WebSocket.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/network/WebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/network/WebSocket.h -------------------------------------------------------------------------------- /cocos2d/cocos/physics/CCPhysicsBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/physics/CCPhysicsBody.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/physics/CCPhysicsBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/physics/CCPhysicsBody.h -------------------------------------------------------------------------------- /cocos2d/cocos/physics/CCPhysicsContact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/physics/CCPhysicsContact.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/physics/CCPhysicsContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/physics/CCPhysicsContact.h -------------------------------------------------------------------------------- /cocos2d/cocos/physics/CCPhysicsJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/physics/CCPhysicsJoint.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/physics/CCPhysicsJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/physics/CCPhysicsJoint.h -------------------------------------------------------------------------------- /cocos2d/cocos/physics/CCPhysicsShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/physics/CCPhysicsShape.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/physics/CCPhysicsShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/physics/CCPhysicsShape.h -------------------------------------------------------------------------------- /cocos2d/cocos/physics/CCPhysicsWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/physics/CCPhysicsWorld.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/physics/CCPhysicsWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/physics/CCPhysicsWorld.h -------------------------------------------------------------------------------- /cocos2d/cocos/physics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/physics/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/cocos/storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/storage/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/cocos/storage/local-storage/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/storage/local-storage/Android.mk -------------------------------------------------------------------------------- /cocos2d/cocos/ui/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/Android.mk -------------------------------------------------------------------------------- /cocos2d/cocos/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/cocos/ui/CocosGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/CocosGUI.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/CocosGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/CocosGUI.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/GUIDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/GUIDefine.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIButton.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIButton.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UICheckBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UICheckBox.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UICheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UICheckBox.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIHelper.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIHelper.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIImageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIImageView.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIImageView.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UILayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UILayout.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UILayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UILayout.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UILayoutDefine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UILayoutDefine.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UILayoutDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UILayoutDefine.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UILayoutParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UILayoutParameter.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UILayoutParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UILayoutParameter.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIListView.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIListView.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UILoadingBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UILoadingBar.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UILoadingBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UILoadingBar.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIPageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIPageView.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIPageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIPageView.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIRichText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIRichText.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIRichText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIRichText.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIScrollInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIScrollInterface.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIScrollView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIScrollView.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIScrollView.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UISlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UISlider.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UISlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UISlider.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIText.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIText.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UITextAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UITextAtlas.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UITextAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UITextAtlas.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UITextBMFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UITextBMFont.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UITextBMFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UITextBMFont.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UITextField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UITextField.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UITextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UITextField.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIWidget.cpp -------------------------------------------------------------------------------- /cocos2d/cocos/ui/UIWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/UIWidget.h -------------------------------------------------------------------------------- /cocos2d/cocos/ui/proj.win32/libGUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/proj.win32/libGUI.vcxproj -------------------------------------------------------------------------------- /cocos2d/cocos/ui/proj.win32/libGUI.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/cocos/ui/proj.win32/libGUI.vcxproj.user -------------------------------------------------------------------------------- /cocos2d/docs/CODING_STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/docs/CODING_STYLE.md -------------------------------------------------------------------------------- /cocos2d/docs/Groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/docs/Groups.h -------------------------------------------------------------------------------- /cocos2d/docs/MainPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/docs/MainPage.h -------------------------------------------------------------------------------- /cocos2d/docs/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/docs/RELEASE_NOTES.md -------------------------------------------------------------------------------- /cocos2d/docs/cocos2dx_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/docs/cocos2dx_portrait.png -------------------------------------------------------------------------------- /cocos2d/docs/doxygen.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/docs/doxygen.config -------------------------------------------------------------------------------- /cocos2d/extensions/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/extensions/Android.mk -------------------------------------------------------------------------------- /cocos2d/extensions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/extensions/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/extensions/ExtensionMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/extensions/ExtensionMacros.h -------------------------------------------------------------------------------- /cocos2d/extensions/GUI/CCEditBox/CCEditBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/extensions/GUI/CCEditBox/CCEditBox.cpp -------------------------------------------------------------------------------- /cocos2d/extensions/GUI/CCEditBox/CCEditBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/extensions/GUI/CCEditBox/CCEditBox.h -------------------------------------------------------------------------------- /cocos2d/extensions/cocos-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/extensions/cocos-ext.h -------------------------------------------------------------------------------- /cocos2d/extensions/proj.win32/Win32InputBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/extensions/proj.win32/Win32InputBox.cpp -------------------------------------------------------------------------------- /cocos2d/extensions/proj.win32/Win32InputBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/extensions/proj.win32/Win32InputBox.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Android.mk -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Box2D.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Collision/b2BroadPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Collision/b2BroadPhase.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Collision/b2Collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Collision/b2Collision.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Collision/b2Distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Collision/b2Distance.cpp -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Collision/b2Distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Collision/b2Distance.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Common/b2Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Common/b2Draw.cpp -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Common/b2Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Common/b2Draw.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Common/b2GrowableStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Common/b2GrowableStack.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Common/b2Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Common/b2Math.cpp -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Common/b2Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Common/b2Math.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Common/b2Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Common/b2Settings.cpp -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Common/b2Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Common/b2Settings.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Common/b2Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Common/b2Timer.cpp -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Common/b2Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Common/b2Timer.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Dynamics/b2Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Dynamics/b2Body.cpp -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Dynamics/b2Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Dynamics/b2Body.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Dynamics/b2Fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Dynamics/b2Fixture.cpp -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Dynamics/b2Fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Dynamics/b2Fixture.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Dynamics/b2Island.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Dynamics/b2Island.cpp -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Dynamics/b2Island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Dynamics/b2Island.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Dynamics/b2TimeStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Dynamics/b2TimeStep.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Dynamics/b2World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Dynamics/b2World.cpp -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Dynamics/b2World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Dynamics/b2World.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Rope/b2Rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Rope/b2Rope.cpp -------------------------------------------------------------------------------- /cocos2d/external/Box2D/Rope/b2Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/Rope/b2Rope.h -------------------------------------------------------------------------------- /cocos2d/external/Box2D/proj.win32/Box2D.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/Box2D/proj.win32/Box2D.vcxproj -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/Android.mk -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/LICENSE.txt -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/README.txt -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/chipmunk-docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/chipmunk-docs.html -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/chipmunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/chipmunk.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpArbiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpArbiter.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpArray.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpBB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpBB.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpBBTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpBBTree.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpBody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpBody.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpCollision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpCollision.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpHashSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpHashSet.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpPolyShape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpPolyShape.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpShape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpShape.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpSpace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpSpace.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpSpaceHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpSpaceHash.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpSpaceQuery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpSpaceQuery.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpSpaceStep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpSpaceStep.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpSpatialIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpSpatialIndex.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpSweep1D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpSweep1D.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/cpVect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/cpVect.c -------------------------------------------------------------------------------- /cocos2d/external/chipmunk/src/prime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/chipmunk/src/prime.h -------------------------------------------------------------------------------- /cocos2d/external/curl/include/android/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /cocos2d/external/curl/include/ios/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/curl/include/ios/curl/curl.h -------------------------------------------------------------------------------- /cocos2d/external/curl/include/ios/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/curl/include/ios/curl/easy.h -------------------------------------------------------------------------------- /cocos2d/external/curl/include/ios/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/curl/include/ios/curl/multi.h -------------------------------------------------------------------------------- /cocos2d/external/curl/include/win32/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/curl/include/win32/curl/curl.h -------------------------------------------------------------------------------- /cocos2d/external/curl/include/win32/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/curl/include/win32/curl/easy.h -------------------------------------------------------------------------------- /cocos2d/external/curl/prebuilt/ios/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/curl/prebuilt/ios/libcurl.a -------------------------------------------------------------------------------- /cocos2d/external/edtaa3func/edtaa3func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/edtaa3func/edtaa3func.cpp -------------------------------------------------------------------------------- /cocos2d/external/edtaa3func/edtaa3func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/edtaa3func/edtaa3func.h -------------------------------------------------------------------------------- /cocos2d/external/glfw3/include/mac/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/glfw3/include/mac/glfw3.h -------------------------------------------------------------------------------- /cocos2d/external/glfw3/include/win32/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/glfw3/include/win32/glfw3.h -------------------------------------------------------------------------------- /cocos2d/external/glfw3/prebuilt/mac/libglfw3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/glfw3/prebuilt/mac/libglfw3.a -------------------------------------------------------------------------------- /cocos2d/external/glfw3/prebuilt/win32/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/glfw3/prebuilt/win32/glfw3.lib -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/android/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/android/jconfig.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/android/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/android/jerror.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/android/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/android/jpeglib.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/ios/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/ios/jconfig.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/ios/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/ios/jmorecfg.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/ios/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/ios/jpeglib.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/linux/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/linux/jconfig.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/linux/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/linux/jmorecfg.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/linux/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/linux/jpeglib.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/mac/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/mac/jconfig.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/mac/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/mac/jmorecfg.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/mac/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/mac/jpeglib.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/win32/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/win32/jconfig.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/win32/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/win32/jmorecfg.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/include/win32/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/include/win32/jpeglib.h -------------------------------------------------------------------------------- /cocos2d/external/jpeg/prebuilt/ios/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/prebuilt/ios/libjpeg.a -------------------------------------------------------------------------------- /cocos2d/external/jpeg/prebuilt/mac/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/jpeg/prebuilt/mac/libjpeg.a -------------------------------------------------------------------------------- /cocos2d/external/json/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/json/document.h -------------------------------------------------------------------------------- /cocos2d/external/json/filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/json/filestream.h -------------------------------------------------------------------------------- /cocos2d/external/json/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/json/internal/pow10.h -------------------------------------------------------------------------------- /cocos2d/external/json/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/json/internal/stack.h -------------------------------------------------------------------------------- /cocos2d/external/json/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/json/internal/strfunc.h -------------------------------------------------------------------------------- /cocos2d/external/json/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/json/prettywriter.h -------------------------------------------------------------------------------- /cocos2d/external/json/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/json/rapidjson.h -------------------------------------------------------------------------------- /cocos2d/external/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/json/reader.h -------------------------------------------------------------------------------- /cocos2d/external/json/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/json/stringbuffer.h -------------------------------------------------------------------------------- /cocos2d/external/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/json/writer.h -------------------------------------------------------------------------------- /cocos2d/external/png/include/android/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/include/android/png.h -------------------------------------------------------------------------------- /cocos2d/external/png/include/android/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/include/android/pngconf.h -------------------------------------------------------------------------------- /cocos2d/external/png/include/ios/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/include/ios/png.h -------------------------------------------------------------------------------- /cocos2d/external/png/include/ios/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/include/ios/pngconf.h -------------------------------------------------------------------------------- /cocos2d/external/png/include/ios/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/include/ios/pnglibconf.h -------------------------------------------------------------------------------- /cocos2d/external/png/include/mac/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/include/mac/png.h -------------------------------------------------------------------------------- /cocos2d/external/png/include/mac/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/include/mac/pngconf.h -------------------------------------------------------------------------------- /cocos2d/external/png/include/mac/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/include/mac/pnglibconf.h -------------------------------------------------------------------------------- /cocos2d/external/png/include/win32/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/include/win32/png.h -------------------------------------------------------------------------------- /cocos2d/external/png/include/win32/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/include/win32/pngconf.h -------------------------------------------------------------------------------- /cocos2d/external/png/include/win32/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/include/win32/pnglibconf.h -------------------------------------------------------------------------------- /cocos2d/external/png/prebuilt/ios/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/prebuilt/ios/libpng.a -------------------------------------------------------------------------------- /cocos2d/external/png/prebuilt/mac/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/prebuilt/mac/libpng.a -------------------------------------------------------------------------------- /cocos2d/external/png/prebuilt/win32/libpng.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/png/prebuilt/win32/libpng.lib -------------------------------------------------------------------------------- /cocos2d/external/sqlite3/Android.mk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cocos2d/external/sqlite3/include/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/sqlite3/include/sqlite3.h -------------------------------------------------------------------------------- /cocos2d/external/sqlite3/include/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/sqlite3/include/sqlite3ext.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/android/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/android/tiff.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/android/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/android/tiffio.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/ios/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/ios/tiff.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/ios/tiffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/ios/tiffconf.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/ios/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/ios/tiffio.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/ios/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/ios/tiffvers.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/linux/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/linux/tiff.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/linux/tiffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/linux/tiffconf.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/linux/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/linux/tiffio.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/linux/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/linux/tiffvers.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/mac/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/mac/tiff.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/mac/tiffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/mac/tiffconf.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/mac/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/mac/tiffio.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/mac/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/mac/tiffvers.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/win32/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/win32/tiff.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/win32/tiffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/win32/tiffconf.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/win32/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/win32/tiffio.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/include/win32/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/include/win32/tiffvers.h -------------------------------------------------------------------------------- /cocos2d/external/tiff/prebuilt/ios/libtiff.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/prebuilt/ios/libtiff.a -------------------------------------------------------------------------------- /cocos2d/external/tiff/prebuilt/mac/libtiff.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tiff/prebuilt/mac/libtiff.a -------------------------------------------------------------------------------- /cocos2d/external/tinyxml2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tinyxml2/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/external/tinyxml2/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tinyxml2/tinyxml2.cpp -------------------------------------------------------------------------------- /cocos2d/external/tinyxml2/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/tinyxml2/tinyxml2.h -------------------------------------------------------------------------------- /cocos2d/external/unzip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/unzip/CMakeLists.txt -------------------------------------------------------------------------------- /cocos2d/external/unzip/ioapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/unzip/ioapi.cpp -------------------------------------------------------------------------------- /cocos2d/external/unzip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/unzip/ioapi.h -------------------------------------------------------------------------------- /cocos2d/external/unzip/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/unzip/unzip.cpp -------------------------------------------------------------------------------- /cocos2d/external/unzip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/unzip/unzip.h -------------------------------------------------------------------------------- /cocos2d/external/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/version.txt -------------------------------------------------------------------------------- /cocos2d/external/webp/include/android/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/android/decode.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/android/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/android/encode.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/android/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/android/types.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/ios/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/ios/decode.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/ios/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/ios/encode.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/ios/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/ios/types.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/linux/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/linux/decode.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/linux/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/linux/encode.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/linux/types.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/mac/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/mac/decode.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/mac/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/mac/encode.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/mac/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/mac/types.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/win32/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/win32/decode.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/win32/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/win32/encode.h -------------------------------------------------------------------------------- /cocos2d/external/webp/include/win32/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/include/win32/types.h -------------------------------------------------------------------------------- /cocos2d/external/webp/prebuilt/ios/libwebp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/prebuilt/ios/libwebp.a -------------------------------------------------------------------------------- /cocos2d/external/webp/prebuilt/mac/libwebp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/external/webp/prebuilt/mac/libwebp.a -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_CCBReader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_CCBReader.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_CCControlExtension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_CCControlExtension.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_JSON4Lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_JSON4Lua.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_Kazmath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_Kazmath.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_LuaSocket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_LuaSocket.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_SpiderMonkey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_SpiderMonkey.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_artwork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_artwork.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_box2d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_box2d.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_chipmunk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_chipmunk.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_cocos2d-iphone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_cocos2d-iphone.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_cocos2d-x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_cocos2d-x.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_cocosdenshion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_cocosdenshion.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_curl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_curl.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_js.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_jsoncpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_jsoncpp.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_libjpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_libjpeg.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_libpng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_libpng.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_libtiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_libtiff.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_libwebsockets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_libwebsockets.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_libxml2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_libxml2.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_lua.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_ogg_vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_ogg_vorbis.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_tolua++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_tolua++.txt -------------------------------------------------------------------------------- /cocos2d/licenses/LICENSE_zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/licenses/LICENSE_zlib.txt -------------------------------------------------------------------------------- /cocos2d/plugin/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/AUTHORS -------------------------------------------------------------------------------- /cocos2d/plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/README.md -------------------------------------------------------------------------------- /cocos2d/plugin/plugins/flurry/proj.ios/Flurry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/plugins/flurry/proj.ios/Flurry.h -------------------------------------------------------------------------------- /cocos2d/plugin/plugins/uc/proj.android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/plugins/uc/proj.android/.project -------------------------------------------------------------------------------- /cocos2d/plugin/protocols/PluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/protocols/PluginManager.cpp -------------------------------------------------------------------------------- /cocos2d/plugin/protocols/PluginParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/protocols/PluginParam.cpp -------------------------------------------------------------------------------- /cocos2d/plugin/protocols/include/PluginParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/protocols/include/PluginParam.h -------------------------------------------------------------------------------- /cocos2d/plugin/protocols/include/ProtocolAds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/protocols/include/ProtocolAds.h -------------------------------------------------------------------------------- /cocos2d/plugin/protocols/include/ProtocolIAP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/protocols/include/ProtocolIAP.h -------------------------------------------------------------------------------- /cocos2d/plugin/protocols/include/ProtocolUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/protocols/include/ProtocolUser.h -------------------------------------------------------------------------------- /cocos2d/plugin/protocols/proj.android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/protocols/proj.android/.project -------------------------------------------------------------------------------- /cocos2d/plugin/protocols/proj.android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/protocols/proj.android/build.xml -------------------------------------------------------------------------------- /cocos2d/plugin/tools/android-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/tools/android-build.py -------------------------------------------------------------------------------- /cocos2d/plugin/tools/android/build_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/tools/android/build_common.xml -------------------------------------------------------------------------------- /cocos2d/plugin/tools/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/tools/config.sh -------------------------------------------------------------------------------- /cocos2d/plugin/tools/gameDevGuide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/tools/gameDevGuide.sh -------------------------------------------------------------------------------- /cocos2d/plugin/tools/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/tools/publish.sh -------------------------------------------------------------------------------- /cocos2d/plugin/tools/toolsForGame/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/tools/toolsForGame/main.py -------------------------------------------------------------------------------- /cocos2d/plugin/tools/toolsForGame/modifyMK.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/tools/toolsForGame/modifyMK.sh -------------------------------------------------------------------------------- /cocos2d/plugin/tools/toolsForGame/modifyRes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/tools/toolsForGame/modifyRes.sh -------------------------------------------------------------------------------- /cocos2d/plugin/tools/toolsForGame/steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/cocos2d/plugin/tools/toolsForGame/steps.py -------------------------------------------------------------------------------- /proj.android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/.classpath -------------------------------------------------------------------------------- /proj.android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/.project -------------------------------------------------------------------------------- /proj.android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/AndroidManifest.xml -------------------------------------------------------------------------------- /proj.android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/README.md -------------------------------------------------------------------------------- /proj.android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/ant.properties -------------------------------------------------------------------------------- /proj.android/build-cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/build-cfg.json -------------------------------------------------------------------------------- /proj.android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/build.xml -------------------------------------------------------------------------------- /proj.android/build_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/build_native.py -------------------------------------------------------------------------------- /proj.android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/jni/Android.mk -------------------------------------------------------------------------------- /proj.android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/jni/Application.mk -------------------------------------------------------------------------------- /proj.android/jni/hellocpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/jni/hellocpp/main.cpp -------------------------------------------------------------------------------- /proj.android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/proguard-project.txt -------------------------------------------------------------------------------- /proj.android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/project.properties -------------------------------------------------------------------------------- /proj.android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /proj.android/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /proj.android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /proj.android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.android/res/values/strings.xml -------------------------------------------------------------------------------- /proj.ios_mac/ios/AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/AppController.h -------------------------------------------------------------------------------- /proj.ios_mac/ios/AppController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/AppController.mm -------------------------------------------------------------------------------- /proj.ios_mac/ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Default-568h@2x.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Default.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Default@2x.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-100.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-114.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-120.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-144.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-152.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-29.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-40.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-50.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-57.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-58.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-72.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-76.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Icon-80.png -------------------------------------------------------------------------------- /proj.ios_mac/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Info.plist -------------------------------------------------------------------------------- /proj.ios_mac/ios/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/Prefix.pch -------------------------------------------------------------------------------- /proj.ios_mac/ios/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/RootViewController.h -------------------------------------------------------------------------------- /proj.ios_mac/ios/RootViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/RootViewController.mm -------------------------------------------------------------------------------- /proj.ios_mac/ios/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/ios/main.m -------------------------------------------------------------------------------- /proj.ios_mac/mac/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/mac/Icon.icns -------------------------------------------------------------------------------- /proj.ios_mac/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/mac/Info.plist -------------------------------------------------------------------------------- /proj.ios_mac/mac/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/mac/Prefix.pch -------------------------------------------------------------------------------- /proj.ios_mac/mac/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.ios_mac/mac/main.cpp -------------------------------------------------------------------------------- /proj.linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.linux/main.cpp -------------------------------------------------------------------------------- /proj.win32/Sushi Crush.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.win32/Sushi Crush.sln -------------------------------------------------------------------------------- /proj.win32/Sushi Crush.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.win32/Sushi Crush.vcxproj -------------------------------------------------------------------------------- /proj.win32/Sushi Crush.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.win32/Sushi Crush.vcxproj.filters -------------------------------------------------------------------------------- /proj.win32/Sushi Crush.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.win32/Sushi Crush.vcxproj.user -------------------------------------------------------------------------------- /proj.win32/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "copy_files" :[ 3 | "../Resources/" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /proj.win32/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.win32/game.rc -------------------------------------------------------------------------------- /proj.win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.win32/main.cpp -------------------------------------------------------------------------------- /proj.win32/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.win32/main.h -------------------------------------------------------------------------------- /proj.win32/res/game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.win32/res/game.ico -------------------------------------------------------------------------------- /proj.win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTyran/SushiCrush/HEAD/proj.win32/resource.h --------------------------------------------------------------------------------