├── .gitignore ├── Classes ├── Card.h ├── Card.m ├── GameLayerScene.h ├── GameLayerScene.m ├── HUDLayer.h ├── HUDLayer.m ├── MatchGameAppDelegate.h └── MatchGameAppDelegate.m ├── Info.plist ├── Library ├── CocosDenshion │ ├── CDAudioManager.h │ ├── CDAudioManager.m │ ├── CDOpenALSupport.h │ ├── CocosDenshion.h │ ├── CocosDenshion.m │ ├── SimpleAudioEngine.h │ └── SimpleAudioEngine.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 │ ├── Action.h │ ├── Action.m │ ├── ActionManager.h │ ├── ActionManager.m │ ├── AtlasNode.h │ ├── AtlasNode.m │ ├── AtlasSprite.h │ ├── AtlasSprite.m │ ├── AtlasSpriteManager.h │ ├── AtlasSpriteManager.m │ ├── BitmapFontAtlas.h │ ├── BitmapFontAtlas.m │ ├── Camera.h │ ├── Camera.m │ ├── CameraAction.h │ ├── CameraAction.m │ ├── CocosNode.h │ ├── CocosNode.m │ ├── Director.h │ ├── Director.m │ ├── DrawingPrimitives.h │ ├── DrawingPrimitives.m │ ├── EaseAction.h │ ├── EaseAction.m │ ├── Grabber.h │ ├── Grabber.m │ ├── Grid.h │ ├── Grid.m │ ├── Grid3DAction.h │ ├── Grid3DAction.m │ ├── GridAction.h │ ├── GridAction.m │ ├── InstantAction.h │ ├── InstantAction.m │ ├── IntervalAction.h │ ├── IntervalAction.m │ ├── Label.h │ ├── Label.m │ ├── LabelAtlas.h │ ├── LabelAtlas.m │ ├── Layer.h │ ├── Layer.m │ ├── Menu.h │ ├── Menu.m │ ├── MenuItem.h │ ├── MenuItem.m │ ├── MotionStreak.h │ ├── MotionStreak.m │ ├── ParallaxNode.h │ ├── ParallaxNode.m │ ├── ParticleExamples.h │ ├── ParticleExamples.m │ ├── ParticleSystem.h │ ├── ParticleSystem.m │ ├── PointParticleSystem.h │ ├── PointParticleSystem.m │ ├── QuadParticleSystem.h │ ├── QuadParticleSystem.m │ ├── RenderTexture.h │ ├── RenderTexture.m │ ├── Ribbon.h │ ├── Ribbon.m │ ├── Scene.h │ ├── Scene.m │ ├── Scheduler.h │ ├── Scheduler.m │ ├── Sprite.h │ ├── Sprite.m │ ├── Support │ │ ├── CGPointExtension.h │ │ ├── CGPointExtension.m │ │ ├── EAGLView.h │ │ ├── EAGLView.m │ │ ├── FileUtils.h │ │ ├── FileUtils.m │ │ ├── OpenGL_Internal.h │ │ ├── PVRTexture.h │ │ ├── PVRTexture.m │ │ ├── TGAlib.h │ │ ├── TGAlib.m │ │ ├── Texture2D.h │ │ ├── Texture2D.m │ │ ├── TransformUtils.h │ │ ├── TransformUtils.m │ │ ├── ZipUtils.h │ │ ├── ZipUtils.m │ │ ├── base64.c │ │ ├── base64.h │ │ ├── ccArray.h │ │ ├── ccHashSet.h │ │ ├── ccHashSet.m │ │ ├── glu.c │ │ └── glu.h │ ├── TMXTiledMap.h │ ├── TMXTiledMap.m │ ├── TMXXMLParser.h │ ├── TMXXMLParser.m │ ├── TextureAtlas.h │ ├── TextureAtlas.m │ ├── TextureMgr.h │ ├── TextureMgr.m │ ├── TextureNode.h │ ├── TextureNode.m │ ├── TileMapAtlas.h │ ├── TileMapAtlas.m │ ├── TiledGridAction.h │ ├── TiledGridAction.m │ ├── TouchDelegateProtocol.h │ ├── TouchDispatcher.h │ ├── TouchDispatcher.m │ ├── TouchHandler.h │ ├── TouchHandler.m │ ├── Transition.h │ ├── Transition.m │ ├── ccExceptions.h │ ├── ccMacros.h │ ├── ccTypes.h │ ├── cocos2d.h │ └── cocos2d.m └── cocoslive │ ├── ScoreServerPost.h │ ├── ScoreServerPost.m │ ├── ScoreServerRequest.h │ ├── ScoreServerRequest.m │ ├── cocoslive.h │ └── cocoslive.m ├── MatchGame.xcodeproj ├── project.pbxproj ├── torrez.mode1v3 └── torrez.pbxuser ├── Resources ├── Default.png ├── Icon.png ├── card-1.png ├── card-2.png ├── card-3.png ├── card-4.png ├── card-5.png ├── card-6.png ├── card-back.png ├── originals │ ├── Default.acorn │ ├── Icon.acorn │ ├── card-1.acorn │ ├── card-2.acorn │ ├── card-3.acorn │ ├── card-4.acorn │ ├── card-5.acorn │ ├── card-6.acorn │ ├── card-back.acorn │ └── shuffle-cards.acorn └── shuffle-cards.png ├── fps_images.png └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/Card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Classes/Card.h -------------------------------------------------------------------------------- /Classes/Card.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Classes/Card.m -------------------------------------------------------------------------------- /Classes/GameLayerScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Classes/GameLayerScene.h -------------------------------------------------------------------------------- /Classes/GameLayerScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Classes/GameLayerScene.m -------------------------------------------------------------------------------- /Classes/HUDLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Classes/HUDLayer.h -------------------------------------------------------------------------------- /Classes/HUDLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Classes/HUDLayer.m -------------------------------------------------------------------------------- /Classes/MatchGameAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Classes/MatchGameAppDelegate.h -------------------------------------------------------------------------------- /Classes/MatchGameAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Classes/MatchGameAppDelegate.m -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Info.plist -------------------------------------------------------------------------------- /Library/CocosDenshion/CDAudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/CocosDenshion/CDAudioManager.h -------------------------------------------------------------------------------- /Library/CocosDenshion/CDAudioManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/CocosDenshion/CDAudioManager.m -------------------------------------------------------------------------------- /Library/CocosDenshion/CDOpenALSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/CocosDenshion/CDOpenALSupport.h -------------------------------------------------------------------------------- /Library/CocosDenshion/CocosDenshion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/CocosDenshion/CocosDenshion.h -------------------------------------------------------------------------------- /Library/CocosDenshion/CocosDenshion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/CocosDenshion/CocosDenshion.m -------------------------------------------------------------------------------- /Library/CocosDenshion/SimpleAudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/CocosDenshion/SimpleAudioEngine.h -------------------------------------------------------------------------------- /Library/CocosDenshion/SimpleAudioEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/CocosDenshion/SimpleAudioEngine.m -------------------------------------------------------------------------------- /Library/TouchJSON/CDataScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/CDataScanner.h -------------------------------------------------------------------------------- /Library/TouchJSON/CDataScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/CDataScanner.m -------------------------------------------------------------------------------- /Library/TouchJSON/Extensions/CDataScanner_Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/Extensions/CDataScanner_Extensions.h -------------------------------------------------------------------------------- /Library/TouchJSON/Extensions/CDataScanner_Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/Extensions/CDataScanner_Extensions.m -------------------------------------------------------------------------------- /Library/TouchJSON/Extensions/NSCharacterSet_Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/Extensions/NSCharacterSet_Extensions.h -------------------------------------------------------------------------------- /Library/TouchJSON/Extensions/NSCharacterSet_Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/Extensions/NSCharacterSet_Extensions.m -------------------------------------------------------------------------------- /Library/TouchJSON/Extensions/NSDictionary_JSONExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/Extensions/NSDictionary_JSONExtensions.h -------------------------------------------------------------------------------- /Library/TouchJSON/Extensions/NSDictionary_JSONExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/Extensions/NSDictionary_JSONExtensions.m -------------------------------------------------------------------------------- /Library/TouchJSON/Extensions/NSScanner_Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/Extensions/NSScanner_Extensions.h -------------------------------------------------------------------------------- /Library/TouchJSON/Extensions/NSScanner_Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/Extensions/NSScanner_Extensions.m -------------------------------------------------------------------------------- /Library/TouchJSON/JSON/CJSONDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/JSON/CJSONDeserializer.h -------------------------------------------------------------------------------- /Library/TouchJSON/JSON/CJSONDeserializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/JSON/CJSONDeserializer.m -------------------------------------------------------------------------------- /Library/TouchJSON/JSON/CJSONScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/JSON/CJSONScanner.h -------------------------------------------------------------------------------- /Library/TouchJSON/JSON/CJSONScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/JSON/CJSONScanner.m -------------------------------------------------------------------------------- /Library/TouchJSON/JSON/CJSONSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/JSON/CJSONSerializer.h -------------------------------------------------------------------------------- /Library/TouchJSON/JSON/CJSONSerializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/TouchJSON/JSON/CJSONSerializer.m -------------------------------------------------------------------------------- /Library/cocos2d/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Action.h -------------------------------------------------------------------------------- /Library/cocos2d/Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Action.m -------------------------------------------------------------------------------- /Library/cocos2d/ActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/ActionManager.h -------------------------------------------------------------------------------- /Library/cocos2d/ActionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/ActionManager.m -------------------------------------------------------------------------------- /Library/cocos2d/AtlasNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/AtlasNode.h -------------------------------------------------------------------------------- /Library/cocos2d/AtlasNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/AtlasNode.m -------------------------------------------------------------------------------- /Library/cocos2d/AtlasSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/AtlasSprite.h -------------------------------------------------------------------------------- /Library/cocos2d/AtlasSprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/AtlasSprite.m -------------------------------------------------------------------------------- /Library/cocos2d/AtlasSpriteManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/AtlasSpriteManager.h -------------------------------------------------------------------------------- /Library/cocos2d/AtlasSpriteManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/AtlasSpriteManager.m -------------------------------------------------------------------------------- /Library/cocos2d/BitmapFontAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/BitmapFontAtlas.h -------------------------------------------------------------------------------- /Library/cocos2d/BitmapFontAtlas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/BitmapFontAtlas.m -------------------------------------------------------------------------------- /Library/cocos2d/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Camera.h -------------------------------------------------------------------------------- /Library/cocos2d/Camera.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Camera.m -------------------------------------------------------------------------------- /Library/cocos2d/CameraAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/CameraAction.h -------------------------------------------------------------------------------- /Library/cocos2d/CameraAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/CameraAction.m -------------------------------------------------------------------------------- /Library/cocos2d/CocosNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/CocosNode.h -------------------------------------------------------------------------------- /Library/cocos2d/CocosNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/CocosNode.m -------------------------------------------------------------------------------- /Library/cocos2d/Director.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Director.h -------------------------------------------------------------------------------- /Library/cocos2d/Director.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Director.m -------------------------------------------------------------------------------- /Library/cocos2d/DrawingPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/DrawingPrimitives.h -------------------------------------------------------------------------------- /Library/cocos2d/DrawingPrimitives.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/DrawingPrimitives.m -------------------------------------------------------------------------------- /Library/cocos2d/EaseAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/EaseAction.h -------------------------------------------------------------------------------- /Library/cocos2d/EaseAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/EaseAction.m -------------------------------------------------------------------------------- /Library/cocos2d/Grabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Grabber.h -------------------------------------------------------------------------------- /Library/cocos2d/Grabber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Grabber.m -------------------------------------------------------------------------------- /Library/cocos2d/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Grid.h -------------------------------------------------------------------------------- /Library/cocos2d/Grid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Grid.m -------------------------------------------------------------------------------- /Library/cocos2d/Grid3DAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Grid3DAction.h -------------------------------------------------------------------------------- /Library/cocos2d/Grid3DAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Grid3DAction.m -------------------------------------------------------------------------------- /Library/cocos2d/GridAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/GridAction.h -------------------------------------------------------------------------------- /Library/cocos2d/GridAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/GridAction.m -------------------------------------------------------------------------------- /Library/cocos2d/InstantAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/InstantAction.h -------------------------------------------------------------------------------- /Library/cocos2d/InstantAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/InstantAction.m -------------------------------------------------------------------------------- /Library/cocos2d/IntervalAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/IntervalAction.h -------------------------------------------------------------------------------- /Library/cocos2d/IntervalAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/IntervalAction.m -------------------------------------------------------------------------------- /Library/cocos2d/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Label.h -------------------------------------------------------------------------------- /Library/cocos2d/Label.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Label.m -------------------------------------------------------------------------------- /Library/cocos2d/LabelAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/LabelAtlas.h -------------------------------------------------------------------------------- /Library/cocos2d/LabelAtlas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/LabelAtlas.m -------------------------------------------------------------------------------- /Library/cocos2d/Layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Layer.h -------------------------------------------------------------------------------- /Library/cocos2d/Layer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Layer.m -------------------------------------------------------------------------------- /Library/cocos2d/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Menu.h -------------------------------------------------------------------------------- /Library/cocos2d/Menu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Menu.m -------------------------------------------------------------------------------- /Library/cocos2d/MenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/MenuItem.h -------------------------------------------------------------------------------- /Library/cocos2d/MenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/MenuItem.m -------------------------------------------------------------------------------- /Library/cocos2d/MotionStreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/MotionStreak.h -------------------------------------------------------------------------------- /Library/cocos2d/MotionStreak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/MotionStreak.m -------------------------------------------------------------------------------- /Library/cocos2d/ParallaxNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/ParallaxNode.h -------------------------------------------------------------------------------- /Library/cocos2d/ParallaxNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/ParallaxNode.m -------------------------------------------------------------------------------- /Library/cocos2d/ParticleExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/ParticleExamples.h -------------------------------------------------------------------------------- /Library/cocos2d/ParticleExamples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/ParticleExamples.m -------------------------------------------------------------------------------- /Library/cocos2d/ParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/ParticleSystem.h -------------------------------------------------------------------------------- /Library/cocos2d/ParticleSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/ParticleSystem.m -------------------------------------------------------------------------------- /Library/cocos2d/PointParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/PointParticleSystem.h -------------------------------------------------------------------------------- /Library/cocos2d/PointParticleSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/PointParticleSystem.m -------------------------------------------------------------------------------- /Library/cocos2d/QuadParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/QuadParticleSystem.h -------------------------------------------------------------------------------- /Library/cocos2d/QuadParticleSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/QuadParticleSystem.m -------------------------------------------------------------------------------- /Library/cocos2d/RenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/RenderTexture.h -------------------------------------------------------------------------------- /Library/cocos2d/RenderTexture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/RenderTexture.m -------------------------------------------------------------------------------- /Library/cocos2d/Ribbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Ribbon.h -------------------------------------------------------------------------------- /Library/cocos2d/Ribbon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Ribbon.m -------------------------------------------------------------------------------- /Library/cocos2d/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Scene.h -------------------------------------------------------------------------------- /Library/cocos2d/Scene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Scene.m -------------------------------------------------------------------------------- /Library/cocos2d/Scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Scheduler.h -------------------------------------------------------------------------------- /Library/cocos2d/Scheduler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Scheduler.m -------------------------------------------------------------------------------- /Library/cocos2d/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Sprite.h -------------------------------------------------------------------------------- /Library/cocos2d/Sprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Sprite.m -------------------------------------------------------------------------------- /Library/cocos2d/Support/CGPointExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/CGPointExtension.h -------------------------------------------------------------------------------- /Library/cocos2d/Support/CGPointExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/CGPointExtension.m -------------------------------------------------------------------------------- /Library/cocos2d/Support/EAGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/EAGLView.h -------------------------------------------------------------------------------- /Library/cocos2d/Support/EAGLView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/EAGLView.m -------------------------------------------------------------------------------- /Library/cocos2d/Support/FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/FileUtils.h -------------------------------------------------------------------------------- /Library/cocos2d/Support/FileUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/FileUtils.m -------------------------------------------------------------------------------- /Library/cocos2d/Support/OpenGL_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/OpenGL_Internal.h -------------------------------------------------------------------------------- /Library/cocos2d/Support/PVRTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/PVRTexture.h -------------------------------------------------------------------------------- /Library/cocos2d/Support/PVRTexture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/PVRTexture.m -------------------------------------------------------------------------------- /Library/cocos2d/Support/TGAlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/TGAlib.h -------------------------------------------------------------------------------- /Library/cocos2d/Support/TGAlib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/TGAlib.m -------------------------------------------------------------------------------- /Library/cocos2d/Support/Texture2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/Texture2D.h -------------------------------------------------------------------------------- /Library/cocos2d/Support/Texture2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/Texture2D.m -------------------------------------------------------------------------------- /Library/cocos2d/Support/TransformUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/TransformUtils.h -------------------------------------------------------------------------------- /Library/cocos2d/Support/TransformUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/TransformUtils.m -------------------------------------------------------------------------------- /Library/cocos2d/Support/ZipUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/ZipUtils.h -------------------------------------------------------------------------------- /Library/cocos2d/Support/ZipUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/ZipUtils.m -------------------------------------------------------------------------------- /Library/cocos2d/Support/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/base64.c -------------------------------------------------------------------------------- /Library/cocos2d/Support/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/base64.h -------------------------------------------------------------------------------- /Library/cocos2d/Support/ccArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/ccArray.h -------------------------------------------------------------------------------- /Library/cocos2d/Support/ccHashSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/ccHashSet.h -------------------------------------------------------------------------------- /Library/cocos2d/Support/ccHashSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/ccHashSet.m -------------------------------------------------------------------------------- /Library/cocos2d/Support/glu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/glu.c -------------------------------------------------------------------------------- /Library/cocos2d/Support/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Support/glu.h -------------------------------------------------------------------------------- /Library/cocos2d/TMXTiledMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TMXTiledMap.h -------------------------------------------------------------------------------- /Library/cocos2d/TMXTiledMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TMXTiledMap.m -------------------------------------------------------------------------------- /Library/cocos2d/TMXXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TMXXMLParser.h -------------------------------------------------------------------------------- /Library/cocos2d/TMXXMLParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TMXXMLParser.m -------------------------------------------------------------------------------- /Library/cocos2d/TextureAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TextureAtlas.h -------------------------------------------------------------------------------- /Library/cocos2d/TextureAtlas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TextureAtlas.m -------------------------------------------------------------------------------- /Library/cocos2d/TextureMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TextureMgr.h -------------------------------------------------------------------------------- /Library/cocos2d/TextureMgr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TextureMgr.m -------------------------------------------------------------------------------- /Library/cocos2d/TextureNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TextureNode.h -------------------------------------------------------------------------------- /Library/cocos2d/TextureNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TextureNode.m -------------------------------------------------------------------------------- /Library/cocos2d/TileMapAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TileMapAtlas.h -------------------------------------------------------------------------------- /Library/cocos2d/TileMapAtlas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TileMapAtlas.m -------------------------------------------------------------------------------- /Library/cocos2d/TiledGridAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TiledGridAction.h -------------------------------------------------------------------------------- /Library/cocos2d/TiledGridAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TiledGridAction.m -------------------------------------------------------------------------------- /Library/cocos2d/TouchDelegateProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TouchDelegateProtocol.h -------------------------------------------------------------------------------- /Library/cocos2d/TouchDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TouchDispatcher.h -------------------------------------------------------------------------------- /Library/cocos2d/TouchDispatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TouchDispatcher.m -------------------------------------------------------------------------------- /Library/cocos2d/TouchHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TouchHandler.h -------------------------------------------------------------------------------- /Library/cocos2d/TouchHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/TouchHandler.m -------------------------------------------------------------------------------- /Library/cocos2d/Transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Transition.h -------------------------------------------------------------------------------- /Library/cocos2d/Transition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/Transition.m -------------------------------------------------------------------------------- /Library/cocos2d/ccExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/ccExceptions.h -------------------------------------------------------------------------------- /Library/cocos2d/ccMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/ccMacros.h -------------------------------------------------------------------------------- /Library/cocos2d/ccTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/ccTypes.h -------------------------------------------------------------------------------- /Library/cocos2d/cocos2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/cocos2d.h -------------------------------------------------------------------------------- /Library/cocos2d/cocos2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocos2d/cocos2d.m -------------------------------------------------------------------------------- /Library/cocoslive/ScoreServerPost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocoslive/ScoreServerPost.h -------------------------------------------------------------------------------- /Library/cocoslive/ScoreServerPost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocoslive/ScoreServerPost.m -------------------------------------------------------------------------------- /Library/cocoslive/ScoreServerRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocoslive/ScoreServerRequest.h -------------------------------------------------------------------------------- /Library/cocoslive/ScoreServerRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocoslive/ScoreServerRequest.m -------------------------------------------------------------------------------- /Library/cocoslive/cocoslive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocoslive/cocoslive.h -------------------------------------------------------------------------------- /Library/cocoslive/cocoslive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Library/cocoslive/cocoslive.m -------------------------------------------------------------------------------- /MatchGame.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/MatchGame.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MatchGame.xcodeproj/torrez.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/MatchGame.xcodeproj/torrez.mode1v3 -------------------------------------------------------------------------------- /MatchGame.xcodeproj/torrez.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/MatchGame.xcodeproj/torrez.pbxuser -------------------------------------------------------------------------------- /Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/Default.png -------------------------------------------------------------------------------- /Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/Icon.png -------------------------------------------------------------------------------- /Resources/card-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/card-1.png -------------------------------------------------------------------------------- /Resources/card-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/card-2.png -------------------------------------------------------------------------------- /Resources/card-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/card-3.png -------------------------------------------------------------------------------- /Resources/card-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/card-4.png -------------------------------------------------------------------------------- /Resources/card-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/card-5.png -------------------------------------------------------------------------------- /Resources/card-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/card-6.png -------------------------------------------------------------------------------- /Resources/card-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/card-back.png -------------------------------------------------------------------------------- /Resources/originals/Default.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/originals/Default.acorn -------------------------------------------------------------------------------- /Resources/originals/Icon.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/originals/Icon.acorn -------------------------------------------------------------------------------- /Resources/originals/card-1.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/originals/card-1.acorn -------------------------------------------------------------------------------- /Resources/originals/card-2.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/originals/card-2.acorn -------------------------------------------------------------------------------- /Resources/originals/card-3.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/originals/card-3.acorn -------------------------------------------------------------------------------- /Resources/originals/card-4.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/originals/card-4.acorn -------------------------------------------------------------------------------- /Resources/originals/card-5.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/originals/card-5.acorn -------------------------------------------------------------------------------- /Resources/originals/card-6.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/originals/card-6.acorn -------------------------------------------------------------------------------- /Resources/originals/card-back.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/originals/card-back.acorn -------------------------------------------------------------------------------- /Resources/originals/shuffle-cards.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/originals/shuffle-cards.acorn -------------------------------------------------------------------------------- /Resources/shuffle-cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/Resources/shuffle-cards.png -------------------------------------------------------------------------------- /fps_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/fps_images.png -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torrez/MatchGame/HEAD/main.m --------------------------------------------------------------------------------