├── EndlessPlatformer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── kayrules.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── kayrules.xcuserdatad │ └── xcschemes │ ├── EndlessPlatformer.xcscheme │ └── xcschememanagement.plist ├── EndlessPlatformer ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── GameConfig.h ├── GameLayer.h ├── GameLayer.m ├── Graphics │ ├── Snipe.plist │ ├── Snipe.png │ ├── background.png │ ├── platform-left.png │ ├── platform-right.png │ └── platform.png ├── MovingPlatform │ ├── MovingPlatform.h │ └── MovingPlatform.m ├── Prefix.pch ├── Resources │ ├── Default.png │ ├── Icon-72.png │ ├── Icon-Small-50.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon.png │ ├── Icon@2x.png │ ├── Info.plist │ ├── fps_images.png │ └── iTunesArtwork ├── RootViewController.h ├── RootViewController.m ├── SupportClasses │ ├── GameOverScene.h │ ├── GameOverScene.m │ ├── ScoreLayer.h │ └── ScoreLayer.m ├── libs │ ├── CocosDenshion │ │ ├── CDAudioManager.h │ │ ├── CDAudioManager.m │ │ ├── CDConfig.h │ │ ├── CDOpenALSupport.h │ │ ├── CDOpenALSupport.m │ │ ├── CocosDenshion.h │ │ ├── CocosDenshion.m │ │ ├── SimpleAudioEngine.h │ │ └── SimpleAudioEngine.m │ ├── FontLabel │ │ ├── FontLabel.h │ │ ├── FontLabel.m │ │ ├── FontLabelStringDrawing.h │ │ ├── FontLabelStringDrawing.m │ │ ├── FontManager.h │ │ ├── FontManager.m │ │ ├── ZAttributedString.h │ │ ├── ZAttributedString.m │ │ ├── ZAttributedStringPrivate.h │ │ ├── ZFont.h │ │ └── ZFont.m │ ├── TouchJSON │ │ ├── CDataScanner.h │ │ ├── CDataScanner.m │ │ ├── Extensions │ │ │ ├── CDataScanner_Extensions.h │ │ │ ├── CDataScanner_Extensions.m │ │ │ ├── NSCharacterSet_Extensions.h │ │ │ ├── NSCharacterSet_Extensions.m │ │ │ ├── NSDictionary_JSONExtensions.h │ │ │ ├── NSDictionary_JSONExtensions.m │ │ │ ├── NSScanner_Extensions.h │ │ │ └── NSScanner_Extensions.m │ │ └── JSON │ │ │ ├── CJSONDeserializer.h │ │ │ ├── CJSONDeserializer.m │ │ │ ├── CJSONScanner.h │ │ │ ├── CJSONScanner.m │ │ │ ├── CJSONSerializer.h │ │ │ └── CJSONSerializer.m │ ├── cocos2d │ │ ├── CCAction.h │ │ ├── CCAction.m │ │ ├── CCActionCamera.h │ │ ├── CCActionCamera.m │ │ ├── CCActionEase.h │ │ ├── CCActionEase.m │ │ ├── CCActionGrid.h │ │ ├── CCActionGrid.m │ │ ├── CCActionGrid3D.h │ │ ├── CCActionGrid3D.m │ │ ├── CCActionInstant.h │ │ ├── CCActionInstant.m │ │ ├── CCActionInterval.h │ │ ├── CCActionInterval.m │ │ ├── CCActionManager.h │ │ ├── CCActionManager.m │ │ ├── CCActionPageTurn3D.h │ │ ├── CCActionPageTurn3D.m │ │ ├── CCActionProgressTimer.h │ │ ├── CCActionProgressTimer.m │ │ ├── CCActionTiledGrid.h │ │ ├── CCActionTiledGrid.m │ │ ├── CCActionTween.h │ │ ├── CCActionTween.m │ │ ├── CCAnimation.h │ │ ├── CCAnimation.m │ │ ├── CCAnimationCache.h │ │ ├── CCAnimationCache.m │ │ ├── CCAtlasNode.h │ │ ├── CCAtlasNode.m │ │ ├── CCBlockSupport.h │ │ ├── CCBlockSupport.m │ │ ├── CCCamera.h │ │ ├── CCCamera.m │ │ ├── CCConfiguration.h │ │ ├── CCConfiguration.m │ │ ├── CCDirector.h │ │ ├── CCDirector.m │ │ ├── CCDrawingPrimitives.h │ │ ├── CCDrawingPrimitives.m │ │ ├── CCGrabber.h │ │ ├── CCGrabber.m │ │ ├── CCGrid.h │ │ ├── CCGrid.m │ │ ├── CCLabelAtlas.h │ │ ├── CCLabelAtlas.m │ │ ├── CCLabelBMFont.h │ │ ├── CCLabelBMFont.m │ │ ├── CCLabelTTF.h │ │ ├── CCLabelTTF.m │ │ ├── CCLayer.h │ │ ├── CCLayer.m │ │ ├── CCMenu.h │ │ ├── CCMenu.m │ │ ├── CCMenuItem.h │ │ ├── CCMenuItem.m │ │ ├── CCMotionStreak.h │ │ ├── CCMotionStreak.m │ │ ├── CCNode.h │ │ ├── CCNode.m │ │ ├── CCParallaxNode.h │ │ ├── CCParallaxNode.m │ │ ├── CCParticleExamples.h │ │ ├── CCParticleExamples.m │ │ ├── CCParticleSystem.h │ │ ├── CCParticleSystem.m │ │ ├── CCParticleSystemPoint.h │ │ ├── CCParticleSystemPoint.m │ │ ├── CCParticleSystemQuad.h │ │ ├── CCParticleSystemQuad.m │ │ ├── CCProgressTimer.h │ │ ├── CCProgressTimer.m │ │ ├── CCProtocols.h │ │ ├── CCRenderTexture.h │ │ ├── CCRenderTexture.m │ │ ├── CCRibbon.h │ │ ├── CCRibbon.m │ │ ├── CCScene.h │ │ ├── CCScene.m │ │ ├── CCScheduler.h │ │ ├── CCScheduler.m │ │ ├── CCSprite.h │ │ ├── CCSprite.m │ │ ├── CCSpriteBatchNode.h │ │ ├── CCSpriteBatchNode.m │ │ ├── CCSpriteFrame.h │ │ ├── CCSpriteFrame.m │ │ ├── CCSpriteFrameCache.h │ │ ├── CCSpriteFrameCache.m │ │ ├── CCTMXLayer.h │ │ ├── CCTMXLayer.m │ │ ├── CCTMXObjectGroup.h │ │ ├── CCTMXObjectGroup.m │ │ ├── CCTMXTiledMap.h │ │ ├── CCTMXTiledMap.m │ │ ├── CCTMXXMLParser.h │ │ ├── CCTMXXMLParser.m │ │ ├── CCTexture2D.h │ │ ├── CCTexture2D.m │ │ ├── CCTextureAtlas.h │ │ ├── CCTextureAtlas.m │ │ ├── CCTextureCache.h │ │ ├── CCTextureCache.m │ │ ├── CCTexturePVR.h │ │ ├── CCTexturePVR.m │ │ ├── CCTileMapAtlas.h │ │ ├── CCTileMapAtlas.m │ │ ├── CCTransition.h │ │ ├── CCTransition.m │ │ ├── CCTransitionPageTurn.h │ │ ├── CCTransitionPageTurn.m │ │ ├── CCTransitionRadial.h │ │ ├── CCTransitionRadial.m │ │ ├── Platforms │ │ │ ├── CCGL.h │ │ │ ├── CCNS.h │ │ │ ├── Mac │ │ │ │ ├── CCDirectorMac.h │ │ │ │ ├── CCDirectorMac.m │ │ │ │ ├── CCEventDispatcher.h │ │ │ │ ├── CCEventDispatcher.m │ │ │ │ ├── MacGLView.h │ │ │ │ ├── MacGLView.m │ │ │ │ ├── MacWindow.h │ │ │ │ └── MacWindow.m │ │ │ └── iOS │ │ │ │ ├── CCDirectorIOS.h │ │ │ │ ├── CCDirectorIOS.m │ │ │ │ ├── CCTouchDelegateProtocol.h │ │ │ │ ├── CCTouchDispatcher.h │ │ │ │ ├── CCTouchDispatcher.m │ │ │ │ ├── CCTouchHandler.h │ │ │ │ ├── CCTouchHandler.m │ │ │ │ ├── EAGLView.h │ │ │ │ ├── EAGLView.m │ │ │ │ ├── ES1Renderer.h │ │ │ │ ├── ES1Renderer.m │ │ │ │ ├── ESRenderer.h │ │ │ │ ├── glu.c │ │ │ │ └── glu.h │ │ ├── Support │ │ │ ├── CCArray.h │ │ │ ├── CCArray.m │ │ │ ├── CCFileUtils.h │ │ │ ├── CCFileUtils.m │ │ │ ├── CCProfiling.h │ │ │ ├── CCProfiling.m │ │ │ ├── CGPointExtension.h │ │ │ ├── CGPointExtension.m │ │ │ ├── OpenGL_Internal.h │ │ │ ├── TGAlib.h │ │ │ ├── TGAlib.m │ │ │ ├── TransformUtils.h │ │ │ ├── TransformUtils.m │ │ │ ├── ZipUtils.h │ │ │ ├── ZipUtils.m │ │ │ ├── base64.c │ │ │ ├── base64.h │ │ │ ├── ccCArray.h │ │ │ ├── ccUtils.c │ │ │ ├── ccUtils.h │ │ │ ├── uthash.h │ │ │ └── utlist.h │ │ ├── ccConfig.h │ │ ├── ccMacros.h │ │ ├── ccTypes.h │ │ ├── cocos2d.h │ │ └── cocos2d.m │ └── cocoslive │ │ ├── CLScoreServerPost.h │ │ ├── CLScoreServerPost.m │ │ ├── CLScoreServerRequest.h │ │ ├── CLScoreServerRequest.m │ │ ├── cocoslive.h │ │ └── cocoslive.m └── main.m └── README.md /EndlessPlatformer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EndlessPlatformer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /EndlessPlatformer.xcodeproj/project.xcworkspace/xcuserdata/kayrules.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer.xcodeproj/project.xcworkspace/xcuserdata/kayrules.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /EndlessPlatformer.xcodeproj/xcuserdata/kayrules.xcuserdatad/xcschemes/EndlessPlatformer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer.xcodeproj/xcuserdata/kayrules.xcuserdatad/xcschemes/EndlessPlatformer.xcscheme -------------------------------------------------------------------------------- /EndlessPlatformer.xcodeproj/xcuserdata/kayrules.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer.xcodeproj/xcuserdata/kayrules.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /EndlessPlatformer/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/.DS_Store -------------------------------------------------------------------------------- /EndlessPlatformer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/AppDelegate.h -------------------------------------------------------------------------------- /EndlessPlatformer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/AppDelegate.m -------------------------------------------------------------------------------- /EndlessPlatformer/GameConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/GameConfig.h -------------------------------------------------------------------------------- /EndlessPlatformer/GameLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/GameLayer.h -------------------------------------------------------------------------------- /EndlessPlatformer/GameLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/GameLayer.m -------------------------------------------------------------------------------- /EndlessPlatformer/Graphics/Snipe.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Graphics/Snipe.plist -------------------------------------------------------------------------------- /EndlessPlatformer/Graphics/Snipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Graphics/Snipe.png -------------------------------------------------------------------------------- /EndlessPlatformer/Graphics/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Graphics/background.png -------------------------------------------------------------------------------- /EndlessPlatformer/Graphics/platform-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Graphics/platform-left.png -------------------------------------------------------------------------------- /EndlessPlatformer/Graphics/platform-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Graphics/platform-right.png -------------------------------------------------------------------------------- /EndlessPlatformer/Graphics/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Graphics/platform.png -------------------------------------------------------------------------------- /EndlessPlatformer/MovingPlatform/MovingPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/MovingPlatform/MovingPlatform.h -------------------------------------------------------------------------------- /EndlessPlatformer/MovingPlatform/MovingPlatform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/MovingPlatform/MovingPlatform.m -------------------------------------------------------------------------------- /EndlessPlatformer/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Prefix.pch -------------------------------------------------------------------------------- /EndlessPlatformer/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Resources/Default.png -------------------------------------------------------------------------------- /EndlessPlatformer/Resources/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Resources/Icon-72.png -------------------------------------------------------------------------------- /EndlessPlatformer/Resources/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Resources/Icon-Small-50.png -------------------------------------------------------------------------------- /EndlessPlatformer/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Resources/Icon-Small.png -------------------------------------------------------------------------------- /EndlessPlatformer/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /EndlessPlatformer/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Resources/Icon.png -------------------------------------------------------------------------------- /EndlessPlatformer/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Resources/Icon@2x.png -------------------------------------------------------------------------------- /EndlessPlatformer/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Resources/Info.plist -------------------------------------------------------------------------------- /EndlessPlatformer/Resources/fps_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Resources/fps_images.png -------------------------------------------------------------------------------- /EndlessPlatformer/Resources/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/Resources/iTunesArtwork -------------------------------------------------------------------------------- /EndlessPlatformer/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/RootViewController.h -------------------------------------------------------------------------------- /EndlessPlatformer/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/RootViewController.m -------------------------------------------------------------------------------- /EndlessPlatformer/SupportClasses/GameOverScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/SupportClasses/GameOverScene.h -------------------------------------------------------------------------------- /EndlessPlatformer/SupportClasses/GameOverScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/SupportClasses/GameOverScene.m -------------------------------------------------------------------------------- /EndlessPlatformer/SupportClasses/ScoreLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/SupportClasses/ScoreLayer.h -------------------------------------------------------------------------------- /EndlessPlatformer/SupportClasses/ScoreLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/SupportClasses/ScoreLayer.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/CocosDenshion/CDAudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/CocosDenshion/CDAudioManager.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/CocosDenshion/CDAudioManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/CocosDenshion/CDAudioManager.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/CocosDenshion/CDConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/CocosDenshion/CDConfig.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/CocosDenshion/CDOpenALSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/CocosDenshion/CDOpenALSupport.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/CocosDenshion/CDOpenALSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/CocosDenshion/CDOpenALSupport.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/CocosDenshion/CocosDenshion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/CocosDenshion/CocosDenshion.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/CocosDenshion/CocosDenshion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/CocosDenshion/CocosDenshion.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/CocosDenshion/SimpleAudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/CocosDenshion/SimpleAudioEngine.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/CocosDenshion/SimpleAudioEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/CocosDenshion/SimpleAudioEngine.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/FontLabel/FontLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/FontLabel/FontLabel.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/FontLabel/FontLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/FontLabel/FontLabel.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/FontLabel/FontLabelStringDrawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/FontLabel/FontLabelStringDrawing.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/FontLabel/FontLabelStringDrawing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/FontLabel/FontLabelStringDrawing.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/FontLabel/FontManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/FontLabel/FontManager.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/FontLabel/FontManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/FontLabel/FontManager.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/FontLabel/ZAttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/FontLabel/ZAttributedString.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/FontLabel/ZAttributedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/FontLabel/ZAttributedString.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/FontLabel/ZAttributedStringPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/FontLabel/ZAttributedStringPrivate.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/FontLabel/ZFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/FontLabel/ZFont.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/FontLabel/ZFont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/FontLabel/ZFont.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/CDataScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/CDataScanner.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/CDataScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/CDataScanner.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/Extensions/CDataScanner_Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/Extensions/CDataScanner_Extensions.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/Extensions/CDataScanner_Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/Extensions/CDataScanner_Extensions.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/Extensions/NSCharacterSet_Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/Extensions/NSCharacterSet_Extensions.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/Extensions/NSCharacterSet_Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/Extensions/NSCharacterSet_Extensions.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/Extensions/NSDictionary_JSONExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/Extensions/NSDictionary_JSONExtensions.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/Extensions/NSDictionary_JSONExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/Extensions/NSDictionary_JSONExtensions.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/Extensions/NSScanner_Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/Extensions/NSScanner_Extensions.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/Extensions/NSScanner_Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/Extensions/NSScanner_Extensions.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/JSON/CJSONDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/JSON/CJSONDeserializer.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/JSON/CJSONDeserializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/JSON/CJSONDeserializer.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/JSON/CJSONScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/JSON/CJSONScanner.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/JSON/CJSONScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/JSON/CJSONScanner.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/JSON/CJSONSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/JSON/CJSONSerializer.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/TouchJSON/JSON/CJSONSerializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/TouchJSON/JSON/CJSONSerializer.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCAction.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCAction.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionCamera.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionCamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionCamera.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionEase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionEase.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionEase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionEase.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionGrid.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionGrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionGrid.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionGrid3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionGrid3D.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionGrid3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionGrid3D.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionInstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionInstant.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionInstant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionInstant.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionInterval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionInterval.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionInterval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionInterval.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionManager.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionManager.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionPageTurn3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionPageTurn3D.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionPageTurn3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionPageTurn3D.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionProgressTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionProgressTimer.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionProgressTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionProgressTimer.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionTiledGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionTiledGrid.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionTiledGrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionTiledGrid.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionTween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionTween.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCActionTween.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCActionTween.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCAnimation.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCAnimation.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCAnimationCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCAnimationCache.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCAnimationCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCAnimationCache.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCAtlasNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCAtlasNode.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCAtlasNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCAtlasNode.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCBlockSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCBlockSupport.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCBlockSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCBlockSupport.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCCamera.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCCamera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCCamera.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCConfiguration.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCConfiguration.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCDirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCDirector.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCDirector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCDirector.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCDrawingPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCDrawingPrimitives.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCDrawingPrimitives.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCDrawingPrimitives.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCGrabber.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCGrabber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCGrabber.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCGrid.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCGrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCGrid.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCLabelAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCLabelAtlas.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCLabelAtlas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCLabelAtlas.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCLabelBMFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCLabelBMFont.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCLabelBMFont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCLabelBMFont.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCLabelTTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCLabelTTF.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCLabelTTF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCLabelTTF.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCLayer.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCLayer.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCMenu.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCMenu.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCMenuItem.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCMenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCMenuItem.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCMotionStreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCMotionStreak.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCMotionStreak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCMotionStreak.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCNode.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCNode.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCParallaxNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCParallaxNode.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCParallaxNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCParallaxNode.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCParticleExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCParticleExamples.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCParticleExamples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCParticleExamples.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCParticleSystem.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCParticleSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCParticleSystem.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCParticleSystemPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCParticleSystemPoint.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCParticleSystemPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCParticleSystemPoint.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCParticleSystemQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCParticleSystemQuad.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCParticleSystemQuad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCParticleSystemQuad.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCProgressTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCProgressTimer.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCProgressTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCProgressTimer.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCProtocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCProtocols.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCRenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCRenderTexture.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCRenderTexture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCRenderTexture.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCRibbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCRibbon.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCRibbon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCRibbon.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCScene.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCScene.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCScheduler.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCScheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCScheduler.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCSprite.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCSprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCSprite.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCSpriteBatchNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCSpriteBatchNode.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCSpriteBatchNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCSpriteBatchNode.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCSpriteFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCSpriteFrame.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCSpriteFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCSpriteFrame.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCSpriteFrameCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCSpriteFrameCache.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCSpriteFrameCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCSpriteFrameCache.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTMXLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTMXLayer.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTMXLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTMXLayer.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTMXObjectGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTMXObjectGroup.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTMXObjectGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTMXObjectGroup.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTMXTiledMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTMXTiledMap.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTMXTiledMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTMXTiledMap.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTMXXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTMXXMLParser.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTMXXMLParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTMXXMLParser.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTexture2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTexture2D.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTexture2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTexture2D.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTextureAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTextureAtlas.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTextureAtlas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTextureAtlas.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTextureCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTextureCache.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTextureCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTextureCache.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTexturePVR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTexturePVR.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTexturePVR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTexturePVR.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTileMapAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTileMapAtlas.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTileMapAtlas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTileMapAtlas.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTransition.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTransition.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTransitionPageTurn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTransitionPageTurn.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTransitionPageTurn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTransitionPageTurn.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTransitionRadial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTransitionRadial.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/CCTransitionRadial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/CCTransitionRadial.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/CCGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/CCGL.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/CCNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/CCNS.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/Mac/CCDirectorMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/Mac/CCDirectorMac.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/Mac/CCDirectorMac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/Mac/CCDirectorMac.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/Mac/CCEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/Mac/CCEventDispatcher.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/Mac/CCEventDispatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/Mac/CCEventDispatcher.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/Mac/MacGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/Mac/MacGLView.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/Mac/MacGLView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/Mac/MacGLView.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/Mac/MacWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/Mac/MacWindow.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/Mac/MacWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/Mac/MacWindow.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCDirectorIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCDirectorIOS.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCDirectorIOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCDirectorIOS.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCTouchDelegateProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCTouchDelegateProtocol.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCTouchDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCTouchDispatcher.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCTouchDispatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCTouchDispatcher.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCTouchHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCTouchHandler.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCTouchHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/CCTouchHandler.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/EAGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/EAGLView.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/EAGLView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/EAGLView.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/ES1Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/ES1Renderer.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/ES1Renderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/ES1Renderer.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/ESRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/ESRenderer.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/glu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/glu.c -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Platforms/iOS/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Platforms/iOS/glu.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/CCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/CCArray.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/CCArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/CCArray.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/CCFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/CCFileUtils.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/CCFileUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/CCFileUtils.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/CCProfiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/CCProfiling.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/CCProfiling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/CCProfiling.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/CGPointExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/CGPointExtension.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/CGPointExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/CGPointExtension.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/OpenGL_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/OpenGL_Internal.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/TGAlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/TGAlib.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/TGAlib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/TGAlib.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/TransformUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/TransformUtils.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/TransformUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/TransformUtils.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/ZipUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/ZipUtils.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/ZipUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/ZipUtils.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/base64.c -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/base64.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/ccCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/ccCArray.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/ccUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/ccUtils.c -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/ccUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/ccUtils.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/uthash.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/Support/utlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/Support/utlist.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/ccConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/ccConfig.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/ccMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/ccMacros.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/ccTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/ccTypes.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/cocos2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/cocos2d.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocos2d/cocos2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocos2d/cocos2d.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocoslive/CLScoreServerPost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocoslive/CLScoreServerPost.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocoslive/CLScoreServerPost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocoslive/CLScoreServerPost.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocoslive/CLScoreServerRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocoslive/CLScoreServerRequest.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocoslive/CLScoreServerRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocoslive/CLScoreServerRequest.m -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocoslive/cocoslive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocoslive/cocoslive.h -------------------------------------------------------------------------------- /EndlessPlatformer/libs/cocoslive/cocoslive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/libs/cocoslive/cocoslive.m -------------------------------------------------------------------------------- /EndlessPlatformer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/EndlessPlatformer/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kayrules/Cocos2d-Endless-Platformer-Game/HEAD/README.md --------------------------------------------------------------------------------