From 5ee191569947aa12cc87b022b08040cf7f55609e Mon Sep 17 00:00:00 2001 From: chsieh Date: Sun, 17 Apr 2011 23:02:18 -0700 Subject: [PATCH] New stuffs. --- Littlest.xcodeproj/project.pbxproj | 1439 + .../project.xcworkspace/contents.xcworkspacedata | 7 + .../UserInterfaceState.xcuserstate |36875 ++++++++++++++++++++ .../xcdebugger/Breakpoints.xcbkptlist | 5 + .../xcschemes/Littlest.xcscheme | 76 + .../xcschemes/xcschememanagement.plist | 22 + Littlest/AppDelegate.h | 20 + Littlest/AppDelegate.mm | 160 + Littlest/Foundation/Common/Assert.h | 69 + Littlest/Foundation/Common/Base.h | 11 + Littlest/Foundation/Common/GlobalDefines.h | 152 + Littlest/Foundation/Common/GlobalInclude.h | 7 + Littlest/Foundation/Common/GlobalTypes.h | 40 + Littlest/Foundation/Common/Print.h | 10 + Littlest/Foundation/Common/Singleton.h | 42 + Littlest/Foundation/Containers/BitEncoder.h | 10 + .../Foundation/Containers/LocklessRingBuffer.cpp | 159 + .../Foundation/Containers/LocklessRingBuffer.h | 23 + .../GraphicsServices/Geometry/BasicPrimitives.h | 27 + .../GraphicsServices/Geometry/BasicPrimitives.mm | 26 + .../Foundation/GraphicsServices/OpenGLServices.h | 58 + .../Foundation/GraphicsServices/OpenGLServices.mm | 160 + .../Foundation/GraphicsServices/RenderTarget.h | 65 + .../Foundation/GraphicsServices/RenderTarget.mm | 150 + Littlest/Foundation/Hash/DJB2.h | 25 + Littlest/Foundation/Math/MathDefines.h | 14 + Littlest/Foundation/Math/MathInclude.h | 8 + Littlest/Foundation/Math/MathOperations.h | 75 + Littlest/Foundation/Math/MathTypes.h | 363 + Littlest/Foundation/Math/Matrix.h | 660 + Littlest/Foundation/Math/Quaternion.h | 100 + Littlest/Foundation/Math/Vector.h | 1176 + Littlest/Foundation/Memory/MemoryBitset.cpp | 316 + Littlest/Foundation/Memory/MemoryBitset.h | 49 + Littlest/Foundation/Memory/MemoryHeap.cpp | 33 + Littlest/Foundation/Memory/MemoryHeap.h | 41 + Littlest/Foundation/Memory/MemoryLinear.h | 110 + Littlest/Foundation/OSInterface/GLView.h | 32 + Littlest/Foundation/OSInterface/GLView.m | 156 + .../Foundation/OSInterface/LittlestAppDelegate.h | 17 + .../Foundation/OSInterface/LittlestAppDelegate.m | 48 + .../OSInterface/LittlestViewController.h | 31 + .../OSInterface/LittlestViewController.m | 408 + Littlest/Foundation/Synchronization/Atomic32Bit.h | 99 + Littlest/Foundation/Synchronization/MemorySync.h | 28 + Littlest/GLES-Render.h | 67 + Littlest/GLES-Render.mm | 179 + Littlest/Game/Scene/Scene.h | 18 + Littlest/GameConfig.h | 28 + Littlest/HelloWorldLayer.h | 27 + Littlest/HelloWorldLayer.mm | 259 + Littlest/Prefix.pch | 14 + Littlest/Resources/Default.png | Bin 0 -> 30635 bytes Littlest/Resources/Icon-72.png | Bin 0 -> 11414 bytes Littlest/Resources/Icon-Small-50.png | Bin 0 -> 7979 bytes Littlest/Resources/Icon-Small.png | Bin 0 -> 4956 bytes Littlest/Resources/Icon-Small@2x.png | Bin 0 -> 9465 bytes Littlest/Resources/Icon.png | Bin 0 -> 9327 bytes Littlest/Resources/Icon@2x.png | Bin 0 -> 21365 bytes Littlest/Resources/Info.plist | 55 + Littlest/Resources/blocks.png | Bin 0 -> 2001 bytes Littlest/Resources/fps_images.png | Bin 0 -> 6203 bytes Littlest/Resources/iTunesArtwork | Bin 0 -> 61982 bytes Littlest/RootViewController.h | 16 + Littlest/RootViewController.m | 152 + Littlest/libs/Box2D/Box2D.h | 62 + .../libs/Box2D/Collision/Shapes/b2CircleShape.cpp | 89 + .../libs/Box2D/Collision/Shapes/b2CircleShape.h | 87 + .../libs/Box2D/Collision/Shapes/b2PolygonShape.cpp | 434 + .../libs/Box2D/Collision/Shapes/b2PolygonShape.h | 131 + Littlest/libs/Box2D/Collision/Shapes/b2Shape.h | 95 + Littlest/libs/Box2D/Collision/b2BroadPhase.cpp | 116 + Littlest/libs/Box2D/Collision/b2BroadPhase.h | 229 + Littlest/libs/Box2D/Collision/b2CollideCircle.cpp | 154 + Littlest/libs/Box2D/Collision/b2CollidePolygon.cpp | 306 + Littlest/libs/Box2D/Collision/b2Collision.cpp | 250 + Littlest/libs/Box2D/Collision/b2Collision.h | 240 + Littlest/libs/Box2D/Collision/b2Distance.cpp | 571 + Littlest/libs/Box2D/Collision/b2Distance.h | 141 + Littlest/libs/Box2D/Collision/b2DynamicTree.cpp | 365 + Littlest/libs/Box2D/Collision/b2DynamicTree.h | 286 + Littlest/libs/Box2D/Collision/b2TimeOfImpact.cpp | 483 + Littlest/libs/Box2D/Collision/b2TimeOfImpact.h | 59 + Littlest/libs/Box2D/Common/b2BlockAllocator.cpp | 205 + Littlest/libs/Box2D/Common/b2BlockAllocator.h | 59 + Littlest/libs/Box2D/Common/b2Math.cpp | 55 + Littlest/libs/Box2D/Common/b2Math.h | 624 + Littlest/libs/Box2D/Common/b2Settings.cpp | 33 + Littlest/libs/Box2D/Common/b2Settings.h | 151 + Littlest/libs/Box2D/Common/b2StackAllocator.cpp | 83 + Littlest/libs/Box2D/Common/b2StackAllocator.h | 60 + .../Box2D/Dynamics/Contacts/b2CircleContact.cpp | 52 + .../libs/Box2D/Dynamics/Contacts/b2CircleContact.h | 38 + .../libs/Box2D/Dynamics/Contacts/b2Contact.cpp | 226 + Littlest/libs/Box2D/Dynamics/Contacts/b2Contact.h | 242 + .../Box2D/Dynamics/Contacts/b2ContactSolver.cpp | 623 + .../libs/Box2D/Dynamics/Contacts/b2ContactSolver.h | 78 + .../libs/Box2D/Dynamics/Contacts/b2NullContact.h | 37 + .../Contacts/b2PolygonAndCircleContact.cpp | 52 + .../Dynamics/Contacts/b2PolygonAndCircleContact.h | 38 + .../Box2D/Dynamics/Contacts/b2PolygonContact.cpp | 52 + .../Box2D/Dynamics/Contacts/b2PolygonContact.h | 38 + .../libs/Box2D/Dynamics/Contacts/b2TOISolver.cpp | 231 + .../libs/Box2D/Dynamics/Contacts/b2TOISolver.h | 51 + .../libs/Box2D/Dynamics/Joints/b2DistanceJoint.cpp | 211 + .../libs/Box2D/Dynamics/Joints/b2DistanceJoint.h | 140 + .../libs/Box2D/Dynamics/Joints/b2FrictionJoint.cpp | 229 + .../libs/Box2D/Dynamics/Joints/b2FrictionJoint.h | 99 + .../libs/Box2D/Dynamics/Joints/b2GearJoint.cpp | 259 + Littlest/libs/Box2D/Dynamics/Joints/b2GearJoint.h | 111 + Littlest/libs/Box2D/Dynamics/Joints/b2Joint.cpp | 186 + Littlest/libs/Box2D/Dynamics/Joints/b2Joint.h | 226 + .../libs/Box2D/Dynamics/Joints/b2LineJoint.cpp | 591 + Littlest/libs/Box2D/Dynamics/Joints/b2LineJoint.h | 170 + .../libs/Box2D/Dynamics/Joints/b2MouseJoint.cpp | 197 + Littlest/libs/Box2D/Dynamics/Joints/b2MouseJoint.h | 114 + .../Box2D/Dynamics/Joints/b2PrismaticJoint.cpp | 586 + .../libs/Box2D/Dynamics/Joints/b2PrismaticJoint.h | 175 + .../libs/Box2D/Dynamics/Joints/b2PulleyJoint.cpp | 427 + .../libs/Box2D/Dynamics/Joints/b2PulleyJoint.h | 148 + .../libs/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp | 478 + .../libs/Box2D/Dynamics/Joints/b2RevoluteJoint.h | 174 + .../libs/Box2D/Dynamics/Joints/b2WeldJoint.cpp | 219 + Littlest/libs/Box2D/Dynamics/Joints/b2WeldJoint.h | 82 + Littlest/libs/Box2D/Dynamics/b2Body.cpp | 470 + Littlest/libs/Box2D/Dynamics/b2Body.h | 802 + Littlest/libs/Box2D/Dynamics/b2ContactManager.cpp | 266 + Littlest/libs/Box2D/Dynamics/b2ContactManager.h | 52 + Littlest/libs/Box2D/Dynamics/b2Fixture.cpp | 163 + Littlest/libs/Box2D/Dynamics/b2Fixture.h | 326 + Littlest/libs/Box2D/Dynamics/b2Island.cpp | 374 + Littlest/libs/Box2D/Dynamics/b2Island.h | 105 + Littlest/libs/Box2D/Dynamics/b2TimeStep.h | 35 + Littlest/libs/Box2D/Dynamics/b2World.cpp | 1076 + Littlest/libs/Box2D/Dynamics/b2World.h | 285 + Littlest/libs/Box2D/Dynamics/b2WorldCallbacks.cpp | 61 + Littlest/libs/Box2D/Dynamics/b2WorldCallbacks.h | 217 + Littlest/libs/CocosDenshion/CDAudioManager.h | 243 + Littlest/libs/CocosDenshion/CDAudioManager.m | 887 + Littlest/libs/CocosDenshion/CDConfig.h | 60 + Littlest/libs/CocosDenshion/CDOpenALSupport.h | 77 + Littlest/libs/CocosDenshion/CDOpenALSupport.m | 246 + Littlest/libs/CocosDenshion/CocosDenshion.h | 440 + Littlest/libs/CocosDenshion/CocosDenshion.m | 1598 + Littlest/libs/CocosDenshion/SimpleAudioEngine.h | 90 + Littlest/libs/CocosDenshion/SimpleAudioEngine.m | 220 + Littlest/libs/FontLabel/FontLabel.h | 44 + Littlest/libs/FontLabel/FontLabel.m | 195 + Littlest/libs/FontLabel/FontLabelStringDrawing.h | 69 + Littlest/libs/FontLabel/FontLabelStringDrawing.m | 892 + Littlest/libs/FontLabel/FontManager.h | 85 + Littlest/libs/FontLabel/FontManager.m | 123 + Littlest/libs/FontLabel/ZAttributedString.h | 77 + Littlest/libs/FontLabel/ZAttributedString.m | 596 + Littlest/libs/FontLabel/ZAttributedStringPrivate.h | 24 + Littlest/libs/FontLabel/ZFont.h | 47 + Littlest/libs/FontLabel/ZFont.m | 170 + Littlest/libs/TouchJSON/CDataScanner.h | 68 + Littlest/libs/TouchJSON/CDataScanner.m | 270 + .../TouchJSON/Extensions/CDataScanner_Extensions.h | 37 + .../TouchJSON/Extensions/CDataScanner_Extensions.m | 80 + .../Extensions/NSCharacterSet_Extensions.h | 36 + .../Extensions/NSCharacterSet_Extensions.m | 48 + .../Extensions/NSDictionary_JSONExtensions.h | 36 + .../Extensions/NSDictionary_JSONExtensions.m | 41 + .../TouchJSON/Extensions/NSScanner_Extensions.h | 44 + .../TouchJSON/Extensions/NSScanner_Extensions.m | 118 + Littlest/libs/TouchJSON/JSON/CJSONDeserializer.h | 59 + Littlest/libs/TouchJSON/JSON/CJSONDeserializer.m | 84 + Littlest/libs/TouchJSON/JSON/CJSONScanner.h | 43 + Littlest/libs/TouchJSON/JSON/CJSONScanner.m | 536 + Littlest/libs/TouchJSON/JSON/CJSONSerializer.h | 45 + Littlest/libs/TouchJSON/JSON/CJSONSerializer.m | 184 + Littlest/libs/cocos2d/CCAction.h | 191 + Littlest/libs/cocos2d/CCAction.m | 361 + Littlest/libs/cocos2d/CCActionCamera.h | 72 + Littlest/libs/cocos2d/CCActionCamera.m | 146 + Littlest/libs/cocos2d/CCActionEase.h | 159 + Littlest/libs/cocos2d/CCActionEase.m | 534 + Littlest/libs/cocos2d/CCActionGrid.h | 165 + Littlest/libs/cocos2d/CCActionGrid.m | 386 + Littlest/libs/cocos2d/CCActionGrid3D.h | 208 + Littlest/libs/cocos2d/CCActionGrid3D.m | 659 + Littlest/libs/cocos2d/CCActionInstant.h | 197 + Littlest/libs/cocos2d/CCActionInstant.m | 472 + Littlest/libs/cocos2d/CCActionInterval.h | 388 + Littlest/libs/cocos2d/CCActionInterval.m | 1215 + Littlest/libs/cocos2d/CCActionManager.h | 109 + Littlest/libs/cocos2d/CCActionManager.m | 344 + Littlest/libs/cocos2d/CCActionPageTurn3D.h | 42 + Littlest/libs/cocos2d/CCActionPageTurn3D.m | 86 + Littlest/libs/cocos2d/CCActionProgressTimer.h | 59 + Littlest/libs/cocos2d/CCActionProgressTimer.m | 103 + Littlest/libs/cocos2d/CCActionTiledGrid.h | 211 + Littlest/libs/cocos2d/CCActionTiledGrid.m | 768 + Littlest/libs/cocos2d/CCActionTween.h | 62 + Littlest/libs/cocos2d/CCActionTween.m | 72 + Littlest/libs/cocos2d/CCAnimation.h | 135 + Littlest/libs/cocos2d/CCAnimation.m | 152 + Littlest/libs/cocos2d/CCAnimationCache.h | 63 + Littlest/libs/cocos2d/CCAnimationCache.m | 100 + Littlest/libs/cocos2d/CCAtlasNode.h | 86 + Littlest/libs/cocos2d/CCAtlasNode.m | 205 + Littlest/libs/cocos2d/CCBlockSupport.h | 51 + Littlest/libs/cocos2d/CCBlockSupport.m | 46 + Littlest/libs/cocos2d/CCCamera.h | 94 + Littlest/libs/cocos2d/CCCamera.m | 130 + Littlest/libs/cocos2d/CCConfiguration.h | 110 + Littlest/libs/cocos2d/CCConfiguration.m | 192 + Littlest/libs/cocos2d/CCDirector.h | 304 + Littlest/libs/cocos2d/CCDirector.m | 557 + Littlest/libs/cocos2d/CCDrawingPrimitives.h | 91 + Littlest/libs/cocos2d/CCDrawingPrimitives.m | 271 + Littlest/libs/cocos2d/CCGrabber.h | 43 + Littlest/libs/cocos2d/CCGrabber.m | 95 + Littlest/libs/cocos2d/CCGrid.h | 121 + Littlest/libs/cocos2d/CCGrid.m | 571 + Littlest/libs/cocos2d/CCLabelAtlas.h | 61 + Littlest/libs/cocos2d/CCLabelAtlas.m | 189 + Littlest/libs/cocos2d/CCLabelBMFont.h | 189 + Littlest/libs/cocos2d/CCLabelBMFont.m | 672 + Littlest/libs/cocos2d/CCLabelTTF.h | 62 + Littlest/libs/cocos2d/CCLabelTTF.m | 125 + Littlest/libs/cocos2d/CCLayer.h | 292 + Littlest/libs/cocos2d/CCLayer.m | 618 + Littlest/libs/cocos2d/CCMenu.h | 92 + Littlest/libs/cocos2d/CCMenu.m | 522 + Littlest/libs/cocos2d/CCMenuItem.h | 362 + Littlest/libs/cocos2d/CCMenuItem.m | 757 + Littlest/libs/cocos2d/CCMotionStreak.h | 67 + Littlest/libs/cocos2d/CCMotionStreak.m | 104 + Littlest/libs/cocos2d/CCNode.h | 510 + Littlest/libs/cocos2d/CCNode.m | 883 + Littlest/libs/cocos2d/CCParallaxNode.h | 49 + Littlest/libs/cocos2d/CCParallaxNode.m | 160 + Littlest/libs/cocos2d/CCParticleExamples.h | 110 + Littlest/libs/cocos2d/CCParticleExamples.m | 925 + Littlest/libs/cocos2d/CCParticleSystem.h | 444 + Littlest/libs/cocos2d/CCParticleSystem.m | 795 + Littlest/libs/cocos2d/CCParticleSystemPoint.h | 64 + Littlest/libs/cocos2d/CCParticleSystemPoint.m | 208 + Littlest/libs/cocos2d/CCParticleSystemQuad.h | 74 + Littlest/libs/cocos2d/CCParticleSystemQuad.m | 316 + Littlest/libs/cocos2d/CCProgressTimer.h | 83 + Littlest/libs/cocos2d/CCProgressTimer.m | 496 + Littlest/libs/cocos2d/CCProtocols.h | 124 + Littlest/libs/cocos2d/CCRenderTexture.h | 110 + Littlest/libs/cocos2d/CCRenderTexture.m | 368 + Littlest/libs/cocos2d/CCRibbon.h | 117 + Littlest/libs/cocos2d/CCRibbon.m | 381 + Littlest/libs/cocos2d/CCScene.h | 42 + Littlest/libs/cocos2d/CCScene.m | 44 + Littlest/libs/cocos2d/CCScheduler.h | 191 + Littlest/libs/cocos2d/CCScheduler.m | 582 + Littlest/libs/cocos2d/CCSprite.h | 351 + Littlest/libs/cocos2d/CCSprite.m | 984 + Littlest/libs/cocos2d/CCSpriteBatchNode.h | 143 + Littlest/libs/cocos2d/CCSpriteBatchNode.m | 499 + Littlest/libs/cocos2d/CCSpriteFrame.h | 89 + Littlest/libs/cocos2d/CCSpriteFrame.m | 108 + Littlest/libs/cocos2d/CCSpriteFrameCache.h | 133 + Littlest/libs/cocos2d/CCSpriteFrameCache.m | 344 + Littlest/libs/cocos2d/CCTMXLayer.h | 153 + Littlest/libs/cocos2d/CCTMXLayer.m | 668 + Littlest/libs/cocos2d/CCTMXObjectGroup.h | 65 + Littlest/libs/cocos2d/CCTMXObjectGroup.m | 84 + Littlest/libs/cocos2d/CCTMXTiledMap.h | 144 + Littlest/libs/cocos2d/CCTMXTiledMap.m | 201 + Littlest/libs/cocos2d/CCTMXXMLParser.h | 201 + Littlest/libs/cocos2d/CCTMXXMLParser.m | 447 + Littlest/libs/cocos2d/CCTexture2D.h | 308 + Littlest/libs/cocos2d/CCTexture2D.m | 754 + Littlest/libs/cocos2d/CCTextureAtlas.h | 138 + Littlest/libs/cocos2d/CCTextureAtlas.m | 343 + Littlest/libs/cocos2d/CCTextureCache.h | 139 + Littlest/libs/cocos2d/CCTextureCache.m | 466 + Littlest/libs/cocos2d/CCTexturePVR.h | 118 + Littlest/libs/cocos2d/CCTexturePVR.m | 407 + Littlest/libs/cocos2d/CCTileMapAtlas.h | 82 + Littlest/libs/cocos2d/CCTileMapAtlas.m | 233 + Littlest/libs/cocos2d/CCTransition.h | 295 + Littlest/libs/cocos2d/CCTransition.m | 1057 + Littlest/libs/cocos2d/CCTransitionPageTurn.h | 60 + Littlest/libs/cocos2d/CCTransitionPageTurn.m | 117 + Littlest/libs/cocos2d/CCTransitionRadial.h | 40 + Littlest/libs/cocos2d/CCTransitionRadial.m | 115 + Littlest/libs/cocos2d/Platforms/CCGL.h | 82 + Littlest/libs/cocos2d/Platforms/CCNS.h | 62 + .../libs/cocos2d/Platforms/Mac/CCDirectorMac.h | 101 + .../libs/cocos2d/Platforms/Mac/CCDirectorMac.m | 462 + .../libs/cocos2d/Platforms/Mac/CCEventDispatcher.h | 276 + .../libs/cocos2d/Platforms/Mac/CCEventDispatcher.m | 644 + Littlest/libs/cocos2d/Platforms/Mac/MacGLView.h | 88 + Littlest/libs/cocos2d/Platforms/Mac/MacGLView.m | 241 + Littlest/libs/cocos2d/Platforms/Mac/MacWindow.h | 42 + Littlest/libs/cocos2d/Platforms/Mac/MacWindow.m | 70 + .../libs/cocos2d/Platforms/iOS/CCDirectorIOS.h | 254 + .../libs/cocos2d/Platforms/iOS/CCDirectorIOS.m | 729 + .../Platforms/iOS/CCTouchDelegateProtocol.h | 75 + .../libs/cocos2d/Platforms/iOS/CCTouchDispatcher.h | 122 + .../libs/cocos2d/Platforms/iOS/CCTouchDispatcher.m | 326 + .../libs/cocos2d/Platforms/iOS/CCTouchHandler.h | 93 + .../libs/cocos2d/Platforms/iOS/CCTouchHandler.m | 135 + Littlest/libs/cocos2d/Platforms/iOS/EAGLView.h | 155 + Littlest/libs/cocos2d/Platforms/iOS/EAGLView.m | 342 + Littlest/libs/cocos2d/Platforms/iOS/ES1Renderer.h | 71 + Littlest/libs/cocos2d/Platforms/iOS/ES1Renderer.m | 252 + Littlest/libs/cocos2d/Platforms/iOS/ESRenderer.h | 53 + Littlest/libs/cocos2d/Platforms/iOS/glu.c | 113 + Littlest/libs/cocos2d/Platforms/iOS/glu.h | 29 + Littlest/libs/cocos2d/Support/CCArray.h | 92 + Littlest/libs/cocos2d/Support/CCArray.m | 238 + Littlest/libs/cocos2d/Support/CCFileUtils.h | 61 + Littlest/libs/cocos2d/Support/CCFileUtils.m | 168 + Littlest/libs/cocos2d/Support/CCProfiling.h | 53 + Littlest/libs/cocos2d/Support/CCProfiling.m | 117 + Littlest/libs/cocos2d/Support/CGPointExtension.h | 321 + Littlest/libs/cocos2d/Support/CGPointExtension.m | 167 + Littlest/libs/cocos2d/Support/OpenGL_Internal.h | 80 + Littlest/libs/cocos2d/Support/TGAlib.h | 55 + Littlest/libs/cocos2d/Support/TGAlib.m | 272 + Littlest/libs/cocos2d/Support/TransformUtils.h | 37 + Littlest/libs/cocos2d/Support/TransformUtils.m | 46 + Littlest/libs/cocos2d/Support/ZipUtils.h | 78 + Littlest/libs/cocos2d/Support/ZipUtils.m | 246 + Littlest/libs/cocos2d/Support/base64.c | 89 + Littlest/libs/cocos2d/Support/base64.h | 33 + Littlest/libs/cocos2d/Support/ccCArray.h | 408 + Littlest/libs/cocos2d/Support/ccUtils.c | 20 + Littlest/libs/cocos2d/Support/ccUtils.h | 29 + Littlest/libs/cocos2d/Support/uthash.h | 956 + Littlest/libs/cocos2d/Support/utlist.h | 493 + Littlest/libs/cocos2d/ccConfig.h | 281 + Littlest/libs/cocos2d/ccMacros.h | 252 + Littlest/libs/cocos2d/ccTypes.h | 286 + Littlest/libs/cocos2d/cocos2d.h | 160 + Littlest/libs/cocos2d/cocos2d.m | 33 + Littlest/libs/cocoslive/CLScoreServerPost.h | 141 + Littlest/libs/cocoslive/CLScoreServerPost.m | 332 + Littlest/libs/cocoslive/CLScoreServerRequest.h | 121 + Littlest/libs/cocoslive/CLScoreServerRequest.m | 256 + Littlest/libs/cocoslive/cocoslive.h | 42 + Littlest/libs/cocoslive/cocoslive.m | 34 + Littlest/main.m | 17 + 344 files changed, 110040 insertions(+), 0 deletions(-) create mode 100644 Littlest.xcodeproj/project.pbxproj create mode 100644 Littlest.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 Littlest.xcodeproj/project.xcworkspace/xcuserdata/dorischen.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 Littlest.xcodeproj/xcuserdata/dorischen.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist create mode 100644 Littlest.xcodeproj/xcuserdata/dorischen.xcuserdatad/xcschemes/Littlest.xcscheme create mode 100644 Littlest.xcodeproj/xcuserdata/dorischen.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 Littlest/AppDelegate.h create mode 100644 Littlest/AppDelegate.mm create mode 100755 Littlest/Foundation/Common/Assert.h create mode 100755 Littlest/Foundation/Common/Base.h create mode 100755 Littlest/Foundation/Common/GlobalDefines.h create mode 100755 Littlest/Foundation/Common/GlobalInclude.h create mode 100755 Littlest/Foundation/Common/GlobalTypes.h create mode 100755 Littlest/Foundation/Common/Print.h create mode 100755 Littlest/Foundation/Common/Singleton.h create mode 100755 Littlest/Foundation/Containers/BitEncoder.h create mode 100755 Littlest/Foundation/Containers/LocklessRingBuffer.cpp create mode 100755 Littlest/Foundation/Containers/LocklessRingBuffer.h create mode 100644 Littlest/Foundation/GraphicsServices/Geometry/BasicPrimitives.h create mode 100644 Littlest/Foundation/GraphicsServices/Geometry/BasicPrimitives.mm create mode 100644 Littlest/Foundation/GraphicsServices/OpenGLServices.h create mode 100644 Littlest/Foundation/GraphicsServices/OpenGLServices.mm create mode 100644 Littlest/Foundation/GraphicsServices/RenderTarget.h create mode 100644 Littlest/Foundation/GraphicsServices/RenderTarget.mm create mode 100755 Littlest/Foundation/Hash/DJB2.h create mode 100755 Littlest/Foundation/Math/MathDefines.h create mode 100755 Littlest/Foundation/Math/MathInclude.h create mode 100755 Littlest/Foundation/Math/MathOperations.h create mode 100755 Littlest/Foundation/Math/MathTypes.h create mode 100755 Littlest/Foundation/Math/Matrix.h create mode 100755 Littlest/Foundation/Math/Quaternion.h create mode 100755 Littlest/Foundation/Math/Vector.h create mode 100755 Littlest/Foundation/Memory/MemoryBitset.cpp create mode 100755 Littlest/Foundation/Memory/MemoryBitset.h create mode 100755 Littlest/Foundation/Memory/MemoryHeap.cpp create mode 100755 Littlest/Foundation/Memory/MemoryHeap.h create mode 100755 Littlest/Foundation/Memory/MemoryLinear.h create mode 100644 Littlest/Foundation/OSInterface/GLView.h create mode 100644 Littlest/Foundation/OSInterface/GLView.m create mode 100644 Littlest/Foundation/OSInterface/LittlestAppDelegate.h create mode 100644 Littlest/Foundation/OSInterface/LittlestAppDelegate.m create mode 100644 Littlest/Foundation/OSInterface/LittlestViewController.h create mode 100644 Littlest/Foundation/OSInterface/LittlestViewController.m create mode 100755 Littlest/Foundation/Synchronization/Atomic32Bit.h create mode 100755 Littlest/Foundation/Synchronization/MemorySync.h create mode 100644 Littlest/GLES-Render.h create mode 100644 Littlest/GLES-Render.mm create mode 100644 Littlest/Game/Scene/Scene.h create mode 100644 Littlest/GameConfig.h create mode 100644 Littlest/HelloWorldLayer.h create mode 100644 Littlest/HelloWorldLayer.mm create mode 100644 Littlest/Prefix.pch create mode 100644 Littlest/Resources/Default.png create mode 100644 Littlest/Resources/Icon-72.png create mode 100644 Littlest/Resources/Icon-Small-50.png create mode 100644 Littlest/Resources/Icon-Small.png create mode 100644 Littlest/Resources/Icon-Small@2x.png create mode 100644 Littlest/Resources/Icon.png create mode 100644 Littlest/Resources/Icon@2x.png create mode 100644 Littlest/Resources/Info.plist create mode 100755 Littlest/Resources/blocks.png create mode 100644 Littlest/Resources/fps_images.png create mode 100644 Littlest/Resources/iTunesArtwork create mode 100644 Littlest/RootViewController.h create mode 100644 Littlest/RootViewController.m create mode 100644 Littlest/libs/Box2D/Box2D.h create mode 100644 Littlest/libs/Box2D/Collision/Shapes/b2CircleShape.cpp create mode 100644 Littlest/libs/Box2D/Collision/Shapes/b2CircleShape.h create mode 100644 Littlest/libs/Box2D/Collision/Shapes/b2PolygonShape.cpp create mode 100644 Littlest/libs/Box2D/Collision/Shapes/b2PolygonShape.h create mode 100644 Littlest/libs/Box2D/Collision/Shapes/b2Shape.h create mode 100644 Littlest/libs/Box2D/Collision/b2BroadPhase.cpp create mode 100644 Littlest/libs/Box2D/Collision/b2BroadPhase.h create mode 100644 Littlest/libs/Box2D/Collision/b2CollideCircle.cpp create mode 100644 Littlest/libs/Box2D/Collision/b2CollidePolygon.cpp create mode 100644 Littlest/libs/Box2D/Collision/b2Collision.cpp create mode 100644 Littlest/libs/Box2D/Collision/b2Collision.h create mode 100644 Littlest/libs/Box2D/Collision/b2Distance.cpp create mode 100644 Littlest/libs/Box2D/Collision/b2Distance.h create mode 100644 Littlest/libs/Box2D/Collision/b2DynamicTree.cpp create mode 100644 Littlest/libs/Box2D/Collision/b2DynamicTree.h create mode 100644 Littlest/libs/Box2D/Collision/b2TimeOfImpact.cpp create mode 100644 Littlest/libs/Box2D/Collision/b2TimeOfImpact.h create mode 100644 Littlest/libs/Box2D/Common/b2BlockAllocator.cpp create mode 100644 Littlest/libs/Box2D/Common/b2BlockAllocator.h create mode 100644 Littlest/libs/Box2D/Common/b2Math.cpp create mode 100644 Littlest/libs/Box2D/Common/b2Math.h create mode 100644 Littlest/libs/Box2D/Common/b2Settings.cpp create mode 100644 Littlest/libs/Box2D/Common/b2Settings.h create mode 100644 Littlest/libs/Box2D/Common/b2StackAllocator.cpp create mode 100644 Littlest/libs/Box2D/Common/b2StackAllocator.h create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2CircleContact.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2CircleContact.h create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2Contact.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2Contact.h create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2ContactSolver.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2ContactSolver.h create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2NullContact.h create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2PolygonContact.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2PolygonContact.h create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2TOISolver.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Contacts/b2TOISolver.h create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2DistanceJoint.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2DistanceJoint.h create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2FrictionJoint.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2FrictionJoint.h create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2GearJoint.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2GearJoint.h create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2Joint.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2Joint.h create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2LineJoint.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2LineJoint.h create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2MouseJoint.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2MouseJoint.h create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2PrismaticJoint.h create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2PulleyJoint.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2PulleyJoint.h create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2RevoluteJoint.h create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2WeldJoint.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/Joints/b2WeldJoint.h create mode 100644 Littlest/libs/Box2D/Dynamics/b2Body.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/b2Body.h create mode 100644 Littlest/libs/Box2D/Dynamics/b2ContactManager.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/b2ContactManager.h create mode 100644 Littlest/libs/Box2D/Dynamics/b2Fixture.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/b2Fixture.h create mode 100644 Littlest/libs/Box2D/Dynamics/b2Island.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/b2Island.h create mode 100644 Littlest/libs/Box2D/Dynamics/b2TimeStep.h create mode 100644 Littlest/libs/Box2D/Dynamics/b2World.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/b2World.h create mode 100644 Littlest/libs/Box2D/Dynamics/b2WorldCallbacks.cpp create mode 100644 Littlest/libs/Box2D/Dynamics/b2WorldCallbacks.h create mode 100644 Littlest/libs/CocosDenshion/CDAudioManager.h create mode 100644 Littlest/libs/CocosDenshion/CDAudioManager.m create mode 100644 Littlest/libs/CocosDenshion/CDConfig.h create mode 100644 Littlest/libs/CocosDenshion/CDOpenALSupport.h create mode 100644 Littlest/libs/CocosDenshion/CDOpenALSupport.m create mode 100644 Littlest/libs/CocosDenshion/CocosDenshion.h create mode 100644 Littlest/libs/CocosDenshion/CocosDenshion.m create mode 100644 Littlest/libs/CocosDenshion/SimpleAudioEngine.h create mode 100644 Littlest/libs/CocosDenshion/SimpleAudioEngine.m create mode 100644 Littlest/libs/FontLabel/FontLabel.h create mode 100644 Littlest/libs/FontLabel/FontLabel.m create mode 100644 Littlest/libs/FontLabel/FontLabelStringDrawing.h create mode 100644 Littlest/libs/FontLabel/FontLabelStringDrawing.m create mode 100644 Littlest/libs/FontLabel/FontManager.h create mode 100644 Littlest/libs/FontLabel/FontManager.m create mode 100644 Littlest/libs/FontLabel/ZAttributedString.h create mode 100644 Littlest/libs/FontLabel/ZAttributedString.m create mode 100644 Littlest/libs/FontLabel/ZAttributedStringPrivate.h create mode 100644 Littlest/libs/FontLabel/ZFont.h create mode 100644 Littlest/libs/FontLabel/ZFont.m create mode 100644 Littlest/libs/TouchJSON/CDataScanner.h create mode 100644 Littlest/libs/TouchJSON/CDataScanner.m create mode 100644 Littlest/libs/TouchJSON/Extensions/CDataScanner_Extensions.h create mode 100644 Littlest/libs/TouchJSON/Extensions/CDataScanner_Extensions.m create mode 100644 Littlest/libs/TouchJSON/Extensions/NSCharacterSet_Extensions.h create mode 100644 Littlest/libs/TouchJSON/Extensions/NSCharacterSet_Extensions.m create mode 100644 Littlest/libs/TouchJSON/Extensions/NSDictionary_JSONExtensions.h create mode 100644 Littlest/libs/TouchJSON/Extensions/NSDictionary_JSONExtensions.m create mode 100644 Littlest/libs/TouchJSON/Extensions/NSScanner_Extensions.h create mode 100644 Littlest/libs/TouchJSON/Extensions/NSScanner_Extensions.m create mode 100644 Littlest/libs/TouchJSON/JSON/CJSONDeserializer.h create mode 100644 Littlest/libs/TouchJSON/JSON/CJSONDeserializer.m create mode 100644 Littlest/libs/TouchJSON/JSON/CJSONScanner.h create mode 100644 Littlest/libs/TouchJSON/JSON/CJSONScanner.m create mode 100644 Littlest/libs/TouchJSON/JSON/CJSONSerializer.h create mode 100644 Littlest/libs/TouchJSON/JSON/CJSONSerializer.m create mode 100644 Littlest/libs/cocos2d/CCAction.h create mode 100644 Littlest/libs/cocos2d/CCAction.m create mode 100644 Littlest/libs/cocos2d/CCActionCamera.h create mode 100644 Littlest/libs/cocos2d/CCActionCamera.m create mode 100644 Littlest/libs/cocos2d/CCActionEase.h create mode 100644 Littlest/libs/cocos2d/CCActionEase.m create mode 100644 Littlest/libs/cocos2d/CCActionGrid.h create mode 100644 Littlest/libs/cocos2d/CCActionGrid.m create mode 100644 Littlest/libs/cocos2d/CCActionGrid3D.h create mode 100644 Littlest/libs/cocos2d/CCActionGrid3D.m create mode 100644 Littlest/libs/cocos2d/CCActionInstant.h create mode 100644 Littlest/libs/cocos2d/CCActionInstant.m create mode 100644 Littlest/libs/cocos2d/CCActionInterval.h create mode 100644 Littlest/libs/cocos2d/CCActionInterval.m create mode 100644 Littlest/libs/cocos2d/CCActionManager.h create mode 100644 Littlest/libs/cocos2d/CCActionManager.m create mode 100644 Littlest/libs/cocos2d/CCActionPageTurn3D.h create mode 100644 Littlest/libs/cocos2d/CCActionPageTurn3D.m create mode 100644 Littlest/libs/cocos2d/CCActionProgressTimer.h create mode 100644 Littlest/libs/cocos2d/CCActionProgressTimer.m create mode 100644 Littlest/libs/cocos2d/CCActionTiledGrid.h create mode 100644 Littlest/libs/cocos2d/CCActionTiledGrid.m create mode 100644 Littlest/libs/cocos2d/CCActionTween.h create mode 100644 Littlest/libs/cocos2d/CCActionTween.m create mode 100644 Littlest/libs/cocos2d/CCAnimation.h create mode 100644 Littlest/libs/cocos2d/CCAnimation.m create mode 100644 Littlest/libs/cocos2d/CCAnimationCache.h create mode 100644 Littlest/libs/cocos2d/CCAnimationCache.m create mode 100644 Littlest/libs/cocos2d/CCAtlasNode.h create mode 100644 Littlest/libs/cocos2d/CCAtlasNode.m create mode 100644 Littlest/libs/cocos2d/CCBlockSupport.h create mode 100644 Littlest/libs/cocos2d/CCBlockSupport.m create mode 100644 Littlest/libs/cocos2d/CCCamera.h create mode 100644 Littlest/libs/cocos2d/CCCamera.m create mode 100644 Littlest/libs/cocos2d/CCConfiguration.h create mode 100644 Littlest/libs/cocos2d/CCConfiguration.m create mode 100644 Littlest/libs/cocos2d/CCDirector.h create mode 100644 Littlest/libs/cocos2d/CCDirector.m create mode 100644 Littlest/libs/cocos2d/CCDrawingPrimitives.h create mode 100644 Littlest/libs/cocos2d/CCDrawingPrimitives.m create mode 100644 Littlest/libs/cocos2d/CCGrabber.h create mode 100644 Littlest/libs/cocos2d/CCGrabber.m create mode 100644 Littlest/libs/cocos2d/CCGrid.h create mode 100644 Littlest/libs/cocos2d/CCGrid.m create mode 100644 Littlest/libs/cocos2d/CCLabelAtlas.h create mode 100644 Littlest/libs/cocos2d/CCLabelAtlas.m create mode 100644 Littlest/libs/cocos2d/CCLabelBMFont.h create mode 100644 Littlest/libs/cocos2d/CCLabelBMFont.m create mode 100644 Littlest/libs/cocos2d/CCLabelTTF.h create mode 100644 Littlest/libs/cocos2d/CCLabelTTF.m create mode 100644 Littlest/libs/cocos2d/CCLayer.h create mode 100644 Littlest/libs/cocos2d/CCLayer.m create mode 100644 Littlest/libs/cocos2d/CCMenu.h create mode 100644 Littlest/libs/cocos2d/CCMenu.m create mode 100644 Littlest/libs/cocos2d/CCMenuItem.h create mode 100644 Littlest/libs/cocos2d/CCMenuItem.m create mode 100644 Littlest/libs/cocos2d/CCMotionStreak.h create mode 100644 Littlest/libs/cocos2d/CCMotionStreak.m create mode 100644 Littlest/libs/cocos2d/CCNode.h create mode 100644 Littlest/libs/cocos2d/CCNode.m create mode 100644 Littlest/libs/cocos2d/CCParallaxNode.h create mode 100644 Littlest/libs/cocos2d/CCParallaxNode.m create mode 100644 Littlest/libs/cocos2d/CCParticleExamples.h create mode 100644 Littlest/libs/cocos2d/CCParticleExamples.m create mode 100644 Littlest/libs/cocos2d/CCParticleSystem.h create mode 100644 Littlest/libs/cocos2d/CCParticleSystem.m create mode 100644 Littlest/libs/cocos2d/CCParticleSystemPoint.h create mode 100644 Littlest/libs/cocos2d/CCParticleSystemPoint.m create mode 100644 Littlest/libs/cocos2d/CCParticleSystemQuad.h create mode 100644 Littlest/libs/cocos2d/CCParticleSystemQuad.m create mode 100644 Littlest/libs/cocos2d/CCProgressTimer.h create mode 100644 Littlest/libs/cocos2d/CCProgressTimer.m create mode 100644 Littlest/libs/cocos2d/CCProtocols.h create mode 100644 Littlest/libs/cocos2d/CCRenderTexture.h create mode 100644 Littlest/libs/cocos2d/CCRenderTexture.m create mode 100644 Littlest/libs/cocos2d/CCRibbon.h create mode 100644 Littlest/libs/cocos2d/CCRibbon.m create mode 100644 Littlest/libs/cocos2d/CCScene.h create mode 100644 Littlest/libs/cocos2d/CCScene.m create mode 100644 Littlest/libs/cocos2d/CCScheduler.h create mode 100644 Littlest/libs/cocos2d/CCScheduler.m create mode 100644 Littlest/libs/cocos2d/CCSprite.h create mode 100644 Littlest/libs/cocos2d/CCSprite.m create mode 100644 Littlest/libs/cocos2d/CCSpriteBatchNode.h create mode 100644 Littlest/libs/cocos2d/CCSpriteBatchNode.m create mode 100644 Littlest/libs/cocos2d/CCSpriteFrame.h create mode 100644 Littlest/libs/cocos2d/CCSpriteFrame.m create mode 100644 Littlest/libs/cocos2d/CCSpriteFrameCache.h create mode 100644 Littlest/libs/cocos2d/CCSpriteFrameCache.m create mode 100644 Littlest/libs/cocos2d/CCTMXLayer.h create mode 100644 Littlest/libs/cocos2d/CCTMXLayer.m create mode 100644 Littlest/libs/cocos2d/CCTMXObjectGroup.h create mode 100644 Littlest/libs/cocos2d/CCTMXObjectGroup.m create mode 100644 Littlest/libs/cocos2d/CCTMXTiledMap.h create mode 100644 Littlest/libs/cocos2d/CCTMXTiledMap.m create mode 100644 Littlest/libs/cocos2d/CCTMXXMLParser.h create mode 100644 Littlest/libs/cocos2d/CCTMXXMLParser.m create mode 100644 Littlest/libs/cocos2d/CCTexture2D.h create mode 100644 Littlest/libs/cocos2d/CCTexture2D.m create mode 100644 Littlest/libs/cocos2d/CCTextureAtlas.h create mode 100644 Littlest/libs/cocos2d/CCTextureAtlas.m create mode 100644 Littlest/libs/cocos2d/CCTextureCache.h create mode 100644 Littlest/libs/cocos2d/CCTextureCache.m create mode 100644 Littlest/libs/cocos2d/CCTexturePVR.h create mode 100644 Littlest/libs/cocos2d/CCTexturePVR.m create mode 100644 Littlest/libs/cocos2d/CCTileMapAtlas.h create mode 100644 Littlest/libs/cocos2d/CCTileMapAtlas.m create mode 100644 Littlest/libs/cocos2d/CCTransition.h create mode 100644 Littlest/libs/cocos2d/CCTransition.m create mode 100644 Littlest/libs/cocos2d/CCTransitionPageTurn.h create mode 100644 Littlest/libs/cocos2d/CCTransitionPageTurn.m create mode 100644 Littlest/libs/cocos2d/CCTransitionRadial.h create mode 100644 Littlest/libs/cocos2d/CCTransitionRadial.m create mode 100644 Littlest/libs/cocos2d/Platforms/CCGL.h create mode 100644 Littlest/libs/cocos2d/Platforms/CCNS.h create mode 100644 Littlest/libs/cocos2d/Platforms/Mac/CCDirectorMac.h create mode 100644 Littlest/libs/cocos2d/Platforms/Mac/CCDirectorMac.m create mode 100644 Littlest/libs/cocos2d/Platforms/Mac/CCEventDispatcher.h create mode 100644 Littlest/libs/cocos2d/Platforms/Mac/CCEventDispatcher.m create mode 100644 Littlest/libs/cocos2d/Platforms/Mac/MacGLView.h create mode 100644 Littlest/libs/cocos2d/Platforms/Mac/MacGLView.m create mode 100644 Littlest/libs/cocos2d/Platforms/Mac/MacWindow.h create mode 100644 Littlest/libs/cocos2d/Platforms/Mac/MacWindow.m create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/CCDirectorIOS.h create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/CCDirectorIOS.m create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/CCTouchDelegateProtocol.h create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/CCTouchDispatcher.h create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/CCTouchDispatcher.m create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/CCTouchHandler.h create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/CCTouchHandler.m create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/EAGLView.h create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/EAGLView.m create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/ES1Renderer.h create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/ES1Renderer.m create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/ESRenderer.h create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/glu.c create mode 100644 Littlest/libs/cocos2d/Platforms/iOS/glu.h create mode 100644 Littlest/libs/cocos2d/Support/CCArray.h create mode 100644 Littlest/libs/cocos2d/Support/CCArray.m create mode 100644 Littlest/libs/cocos2d/Support/CCFileUtils.h create mode 100644 Littlest/libs/cocos2d/Support/CCFileUtils.m create mode 100644 Littlest/libs/cocos2d/Support/CCProfiling.h create mode 100644 Littlest/libs/cocos2d/Support/CCProfiling.m create mode 100644 Littlest/libs/cocos2d/Support/CGPointExtension.h create mode 100644 Littlest/libs/cocos2d/Support/CGPointExtension.m create mode 100644 Littlest/libs/cocos2d/Support/OpenGL_Internal.h create mode 100644 Littlest/libs/cocos2d/Support/TGAlib.h create mode 100644 Littlest/libs/cocos2d/Support/TGAlib.m create mode 100644 Littlest/libs/cocos2d/Support/TransformUtils.h create mode 100644 Littlest/libs/cocos2d/Support/TransformUtils.m create mode 100644 Littlest/libs/cocos2d/Support/ZipUtils.h create mode 100644 Littlest/libs/cocos2d/Support/ZipUtils.m create mode 100644 Littlest/libs/cocos2d/Support/base64.c create mode 100644 Littlest/libs/cocos2d/Support/base64.h create mode 100644 Littlest/libs/cocos2d/Support/ccCArray.h create mode 100644 Littlest/libs/cocos2d/Support/ccUtils.c create mode 100644 Littlest/libs/cocos2d/Support/ccUtils.h create mode 100644 Littlest/libs/cocos2d/Support/uthash.h create mode 100644 Littlest/libs/cocos2d/Support/utlist.h create mode 100644 Littlest/libs/cocos2d/ccConfig.h create mode 100644 Littlest/libs/cocos2d/ccMacros.h create mode 100644 Littlest/libs/cocos2d/ccTypes.h create mode 100644 Littlest/libs/cocos2d/cocos2d.h create mode 100644 Littlest/libs/cocos2d/cocos2d.m create mode 100644 Littlest/libs/cocoslive/CLScoreServerPost.h create mode 100644 Littlest/libs/cocoslive/CLScoreServerPost.m create mode 100644 Littlest/libs/cocoslive/CLScoreServerRequest.h create mode 100644 Littlest/libs/cocoslive/CLScoreServerRequest.m create mode 100644 Littlest/libs/cocoslive/cocoslive.h create mode 100644 Littlest/libs/cocoslive/cocoslive.m create mode 100644 Littlest/main.m diff --git a/Littlest.xcodeproj/project.pbxproj b/Littlest.xcodeproj/project.pbxproj new file mode 100644 index 0000000..cb6088e --- /dev/null +++ b/Littlest.xcodeproj/project.pbxproj @@ -0,0 +1,1439 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 4B8CBFB5135BFDF600B3E49F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B8CBFB4135BFDF600B3E49F /* QuartzCore.framework */; }; + 4B8CBFB7135BFDF600B3E49F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B8CBFB6135BFDF600B3E49F /* OpenGLES.framework */; }; + 4B8CBFB9135BFDF600B3E49F /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B8CBFB8135BFDF600B3E49F /* OpenAL.framework */; }; + 4B8CBFBB135BFDF600B3E49F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B8CBFBA135BFDF600B3E49F /* AudioToolbox.framework */; }; + 4B8CBFBD135BFDF600B3E49F /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B8CBFBC135BFDF600B3E49F /* AVFoundation.framework */; }; + 4B8CBFBF135BFDF600B3E49F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B8CBFBE135BFDF600B3E49F /* UIKit.framework */; }; + 4B8CBFC1135BFDF600B3E49F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B8CBFC0135BFDF600B3E49F /* Foundation.framework */; }; + 4B8CBFC3135BFDF600B3E49F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B8CBFC2135BFDF600B3E49F /* CoreGraphics.framework */; }; + 4B8CBFC7135BFDF600B3E49F /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 4B8CBFC6135BFDF600B3E49F /* Default.png */; }; + 4B8CBFC9135BFDF600B3E49F /* fps_images.png in Resources */ = {isa = PBXBuildFile; fileRef = 4B8CBFC8135BFDF600B3E49F /* fps_images.png */; }; + 4B8CBFCB135BFDF600B3E49F /* Icon-72.png in Resources */ = {isa = PBXBuildFile; fileRef = 4B8CBFCA135BFDF600B3E49F /* Icon-72.png */; }; + 4B8CBFCD135BFDF600B3E49F /* Icon-Small-50.png in Resources */ = {isa = PBXBuildFile; fileRef = 4B8CBFCC135BFDF600B3E49F /* Icon-Small-50.png */; }; + 4B8CBFCF135BFDF600B3E49F /* Icon-Small.png in Resources */ = {isa = PBXBuildFile; fileRef = 4B8CBFCE135BFDF600B3E49F /* Icon-Small.png */; }; + 4B8CBFD1135BFDF600B3E49F /* Icon-Small@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4B8CBFD0135BFDF600B3E49F /* Icon-Small@2x.png */; }; + 4B8CBFD3135BFDF600B3E49F /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 4B8CBFD2135BFDF600B3E49F /* Icon.png */; }; + 4B8CBFD5135BFDF600B3E49F /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4B8CBFD4135BFDF600B3E49F /* Icon@2x.png */; }; + 4B8CBFD8135BFDF600B3E49F /* iTunesArtwork in Resources */ = {isa = PBXBuildFile; fileRef = 4B8CBFD7135BFDF600B3E49F /* iTunesArtwork */; }; + 4B8CBFDC135BFDF600B3E49F /* CCAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFDB135BFDF600B3E49F /* CCAction.m */; }; + 4B8CBFDF135BFDF600B3E49F /* CCActionCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFDE135BFDF600B3E49F /* CCActionCamera.m */; }; + 4B8CBFE2135BFDF600B3E49F /* CCActionEase.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFE1135BFDF600B3E49F /* CCActionEase.m */; }; + 4B8CBFE5135BFDF600B3E49F /* CCActionGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFE4135BFDF600B3E49F /* CCActionGrid.m */; }; + 4B8CBFE8135BFDF600B3E49F /* CCActionGrid3D.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFE7135BFDF600B3E49F /* CCActionGrid3D.m */; }; + 4B8CBFEB135BFDF600B3E49F /* CCActionInstant.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFEA135BFDF600B3E49F /* CCActionInstant.m */; }; + 4B8CBFEE135BFDF600B3E49F /* CCActionInterval.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFED135BFDF600B3E49F /* CCActionInterval.m */; }; + 4B8CBFF1135BFDF600B3E49F /* CCActionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFF0135BFDF600B3E49F /* CCActionManager.m */; }; + 4B8CBFF4135BFDF600B3E49F /* CCActionPageTurn3D.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFF3135BFDF600B3E49F /* CCActionPageTurn3D.m */; }; + 4B8CBFF7135BFDF600B3E49F /* CCActionProgressTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFF6135BFDF600B3E49F /* CCActionProgressTimer.m */; }; + 4B8CBFFA135BFDF600B3E49F /* CCActionTiledGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFF9135BFDF600B3E49F /* CCActionTiledGrid.m */; }; + 4B8CBFFD135BFDF700B3E49F /* CCActionTween.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFFC135BFDF700B3E49F /* CCActionTween.m */; }; + 4B8CC000135BFDF700B3E49F /* CCAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CBFFF135BFDF700B3E49F /* CCAnimation.m */; }; + 4B8CC003135BFDF700B3E49F /* CCAnimationCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC002135BFDF700B3E49F /* CCAnimationCache.m */; }; + 4B8CC006135BFDF700B3E49F /* CCAtlasNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC005135BFDF700B3E49F /* CCAtlasNode.m */; }; + 4B8CC009135BFDF700B3E49F /* CCBlockSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC008135BFDF700B3E49F /* CCBlockSupport.m */; }; + 4B8CC00C135BFDF700B3E49F /* CCCamera.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC00B135BFDF700B3E49F /* CCCamera.m */; }; + 4B8CC010135BFDF700B3E49F /* CCConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC00F135BFDF700B3E49F /* CCConfiguration.m */; }; + 4B8CC013135BFDF700B3E49F /* CCDirector.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC012135BFDF700B3E49F /* CCDirector.m */; }; + 4B8CC016135BFDF700B3E49F /* CCDrawingPrimitives.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC015135BFDF700B3E49F /* CCDrawingPrimitives.m */; }; + 4B8CC019135BFDF700B3E49F /* CCGrabber.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC018135BFDF700B3E49F /* CCGrabber.m */; }; + 4B8CC01C135BFDF700B3E49F /* CCGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC01B135BFDF700B3E49F /* CCGrid.m */; }; + 4B8CC01F135BFDF700B3E49F /* CCLabelAtlas.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC01E135BFDF700B3E49F /* CCLabelAtlas.m */; }; + 4B8CC022135BFDF700B3E49F /* CCLabelBMFont.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC021135BFDF700B3E49F /* CCLabelBMFont.m */; }; + 4B8CC025135BFDF700B3E49F /* CCLabelTTF.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC024135BFDF700B3E49F /* CCLabelTTF.m */; }; + 4B8CC028135BFDF700B3E49F /* CCLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC027135BFDF700B3E49F /* CCLayer.m */; }; + 4B8CC02C135BFDF700B3E49F /* CCMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC02B135BFDF700B3E49F /* CCMenu.m */; }; + 4B8CC02F135BFDF700B3E49F /* CCMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC02E135BFDF700B3E49F /* CCMenuItem.m */; }; + 4B8CC032135BFDF700B3E49F /* CCMotionStreak.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC031135BFDF700B3E49F /* CCMotionStreak.m */; }; + 4B8CC035135BFDF700B3E49F /* CCNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC034135BFDF700B3E49F /* CCNode.m */; }; + 4B8CC038135BFDF700B3E49F /* CCParallaxNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC037135BFDF700B3E49F /* CCParallaxNode.m */; }; + 4B8CC03B135BFDF700B3E49F /* CCParticleExamples.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC03A135BFDF700B3E49F /* CCParticleExamples.m */; }; + 4B8CC03E135BFDF700B3E49F /* CCParticleSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC03D135BFDF700B3E49F /* CCParticleSystem.m */; }; + 4B8CC041135BFDF700B3E49F /* CCParticleSystemPoint.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC040135BFDF700B3E49F /* CCParticleSystemPoint.m */; }; + 4B8CC044135BFDF700B3E49F /* CCParticleSystemQuad.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC043135BFDF700B3E49F /* CCParticleSystemQuad.m */; }; + 4B8CC047135BFDF700B3E49F /* CCProgressTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC046135BFDF700B3E49F /* CCProgressTimer.m */; }; + 4B8CC04B135BFDF700B3E49F /* CCRenderTexture.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC04A135BFDF700B3E49F /* CCRenderTexture.m */; }; + 4B8CC04E135BFDF700B3E49F /* CCRibbon.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC04D135BFDF700B3E49F /* CCRibbon.m */; }; + 4B8CC051135BFDF700B3E49F /* CCScene.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC050135BFDF700B3E49F /* CCScene.m */; }; + 4B8CC054135BFDF700B3E49F /* CCScheduler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC053135BFDF700B3E49F /* CCScheduler.m */; }; + 4B8CC057135BFDF700B3E49F /* CCSprite.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC056135BFDF700B3E49F /* CCSprite.m */; }; + 4B8CC05A135BFDF700B3E49F /* CCSpriteBatchNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC059135BFDF700B3E49F /* CCSpriteBatchNode.m */; }; + 4B8CC05D135BFDF700B3E49F /* CCSpriteFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC05C135BFDF700B3E49F /* CCSpriteFrame.m */; }; + 4B8CC060135BFDF700B3E49F /* CCSpriteFrameCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC05F135BFDF700B3E49F /* CCSpriteFrameCache.m */; }; + 4B8CC063135BFDF700B3E49F /* CCTexture2D.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC062135BFDF700B3E49F /* CCTexture2D.m */; }; + 4B8CC066135BFDF700B3E49F /* CCTextureAtlas.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC065135BFDF700B3E49F /* CCTextureAtlas.m */; }; + 4B8CC069135BFDF700B3E49F /* CCTextureCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC068135BFDF700B3E49F /* CCTextureCache.m */; }; + 4B8CC06C135BFDF700B3E49F /* CCTexturePVR.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC06B135BFDF700B3E49F /* CCTexturePVR.m */; }; + 4B8CC06F135BFDF700B3E49F /* CCTileMapAtlas.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC06E135BFDF700B3E49F /* CCTileMapAtlas.m */; }; + 4B8CC072135BFDF700B3E49F /* CCTMXLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC071135BFDF700B3E49F /* CCTMXLayer.m */; }; + 4B8CC075135BFDF700B3E49F /* CCTMXObjectGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC074135BFDF700B3E49F /* CCTMXObjectGroup.m */; }; + 4B8CC078135BFDF700B3E49F /* CCTMXTiledMap.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC077135BFDF700B3E49F /* CCTMXTiledMap.m */; }; + 4B8CC07B135BFDF700B3E49F /* CCTMXXMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC07A135BFDF700B3E49F /* CCTMXXMLParser.m */; }; + 4B8CC07E135BFDF700B3E49F /* CCTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC07D135BFDF700B3E49F /* CCTransition.m */; }; + 4B8CC081135BFDF700B3E49F /* CCTransitionPageTurn.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC080135BFDF700B3E49F /* CCTransitionPageTurn.m */; }; + 4B8CC084135BFDF800B3E49F /* CCTransitionRadial.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC083135BFDF700B3E49F /* CCTransitionRadial.m */; }; + 4B8CC088135BFDF800B3E49F /* cocos2d.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC087135BFDF800B3E49F /* cocos2d.m */; }; + 4B8CC08D135BFDF800B3E49F /* CCDirectorIOS.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC08C135BFDF800B3E49F /* CCDirectorIOS.m */; }; + 4B8CC091135BFDF800B3E49F /* CCTouchDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC090135BFDF800B3E49F /* CCTouchDispatcher.m */; }; + 4B8CC094135BFDF800B3E49F /* CCTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC093135BFDF800B3E49F /* CCTouchHandler.m */; }; + 4B8CC097135BFDF800B3E49F /* EAGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC096135BFDF800B3E49F /* EAGLView.m */; }; + 4B8CC09A135BFDF800B3E49F /* ES1Renderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC099135BFDF800B3E49F /* ES1Renderer.m */; }; + 4B8CC09D135BFDF800B3E49F /* glu.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC09C135BFDF800B3E49F /* glu.c */; }; + 4B8CC0A1135BFDF800B3E49F /* CCDirectorMac.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0A0135BFDF800B3E49F /* CCDirectorMac.m */; }; + 4B8CC0A4135BFDF800B3E49F /* CCEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0A3135BFDF800B3E49F /* CCEventDispatcher.m */; }; + 4B8CC0A7135BFDF800B3E49F /* MacGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0A6135BFDF800B3E49F /* MacGLView.m */; }; + 4B8CC0AA135BFDF800B3E49F /* MacWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0A9135BFDF800B3E49F /* MacWindow.m */; }; + 4B8CC0AC135BFDF800B3E49F /* base64.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0AB135BFDF800B3E49F /* base64.c */; }; + 4B8CC0B0135BFDF800B3E49F /* CCArray.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0AF135BFDF800B3E49F /* CCArray.m */; }; + 4B8CC0B4135BFDF800B3E49F /* CCFileUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0B3135BFDF800B3E49F /* CCFileUtils.m */; }; + 4B8CC0B7135BFDF800B3E49F /* CCProfiling.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0B6135BFDF800B3E49F /* CCProfiling.m */; }; + 4B8CC0B9135BFDF800B3E49F /* ccUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0B8135BFDF800B3E49F /* ccUtils.c */; }; + 4B8CC0BD135BFDF800B3E49F /* CGPointExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0BC135BFDF800B3E49F /* CGPointExtension.m */; }; + 4B8CC0C1135BFDF800B3E49F /* TGAlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0C0135BFDF800B3E49F /* TGAlib.m */; }; + 4B8CC0C4135BFDF800B3E49F /* TransformUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0C3135BFDF800B3E49F /* TransformUtils.m */; }; + 4B8CC0C9135BFDF800B3E49F /* ZipUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0C8135BFDF800B3E49F /* ZipUtils.m */; }; + 4B8CC0CD135BFDF800B3E49F /* CDAudioManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0CC135BFDF800B3E49F /* CDAudioManager.m */; }; + 4B8CC0D1135BFDF800B3E49F /* CDOpenALSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0D0135BFDF800B3E49F /* CDOpenALSupport.m */; }; + 4B8CC0D4135BFDF800B3E49F /* CocosDenshion.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0D3135BFDF800B3E49F /* CocosDenshion.m */; }; + 4B8CC0D7135BFDF800B3E49F /* SimpleAudioEngine.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0D6135BFDF800B3E49F /* SimpleAudioEngine.m */; }; + 4B8CC0DB135BFDF800B3E49F /* CLScoreServerPost.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0DA135BFDF800B3E49F /* CLScoreServerPost.m */; }; + 4B8CC0DE135BFDF800B3E49F /* CLScoreServerRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0DD135BFDF800B3E49F /* CLScoreServerRequest.m */; }; + 4B8CC0E1135BFDF800B3E49F /* cocoslive.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0E0135BFDF800B3E49F /* cocoslive.m */; }; + 4B8CC0E5135BFDF800B3E49F /* FontLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0E4135BFDF800B3E49F /* FontLabel.m */; }; + 4B8CC0E8135BFDF800B3E49F /* FontLabelStringDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0E7135BFDF800B3E49F /* FontLabelStringDrawing.m */; }; + 4B8CC0EB135BFDF800B3E49F /* FontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0EA135BFDF800B3E49F /* FontManager.m */; }; + 4B8CC0EE135BFDF800B3E49F /* ZAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0ED135BFDF800B3E49F /* ZAttributedString.m */; }; + 4B8CC0F2135BFDF800B3E49F /* ZFont.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0F1135BFDF800B3E49F /* ZFont.m */; }; + 4B8CC0F6135BFDF800B3E49F /* CDataScanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0F5135BFDF800B3E49F /* CDataScanner.m */; }; + 4B8CC0F9135BFDF800B3E49F /* CDataScanner_Extensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0F8135BFDF800B3E49F /* CDataScanner_Extensions.m */; }; + 4B8CC0FC135BFDF800B3E49F /* NSCharacterSet_Extensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0FB135BFDF800B3E49F /* NSCharacterSet_Extensions.m */; }; + 4B8CC0FF135BFDF800B3E49F /* NSDictionary_JSONExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC0FE135BFDF800B3E49F /* NSDictionary_JSONExtensions.m */; }; + 4B8CC102135BFDF800B3E49F /* NSScanner_Extensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC101135BFDF800B3E49F /* NSScanner_Extensions.m */; }; + 4B8CC105135BFDF800B3E49F /* CJSONDeserializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC104135BFDF800B3E49F /* CJSONDeserializer.m */; }; + 4B8CC108135BFDF800B3E49F /* CJSONScanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC107135BFDF800B3E49F /* CJSONScanner.m */; }; + 4B8CC10B135BFDF800B3E49F /* CJSONSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC10A135BFDF800B3E49F /* CJSONSerializer.m */; }; + 4B8CC10F135BFDF800B3E49F /* b2BroadPhase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC10E135BFDF800B3E49F /* b2BroadPhase.cpp */; }; + 4B8CC112135BFDF800B3E49F /* b2CollideCircle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC111135BFDF800B3E49F /* b2CollideCircle.cpp */; }; + 4B8CC114135BFDF900B3E49F /* b2CollidePolygon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC113135BFDF900B3E49F /* b2CollidePolygon.cpp */; }; + 4B8CC116135BFDF900B3E49F /* b2Collision.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC115135BFDF900B3E49F /* b2Collision.cpp */; }; + 4B8CC119135BFDF900B3E49F /* b2Distance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC118135BFDF900B3E49F /* b2Distance.cpp */; }; + 4B8CC11C135BFDF900B3E49F /* b2DynamicTree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC11B135BFDF900B3E49F /* b2DynamicTree.cpp */; }; + 4B8CC11F135BFDF900B3E49F /* b2TimeOfImpact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC11E135BFDF900B3E49F /* b2TimeOfImpact.cpp */; }; + 4B8CC122135BFDF900B3E49F /* b2CircleShape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC121135BFDF900B3E49F /* b2CircleShape.cpp */; }; + 4B8CC125135BFDF900B3E49F /* b2PolygonShape.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC124135BFDF900B3E49F /* b2PolygonShape.cpp */; }; + 4B8CC129135BFDF900B3E49F /* b2BlockAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC128135BFDF900B3E49F /* b2BlockAllocator.cpp */; }; + 4B8CC12C135BFDF900B3E49F /* b2Math.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC12B135BFDF900B3E49F /* b2Math.cpp */; }; + 4B8CC12F135BFDF900B3E49F /* b2Settings.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC12E135BFDF900B3E49F /* b2Settings.cpp */; }; + 4B8CC132135BFDF900B3E49F /* b2StackAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC131135BFDF900B3E49F /* b2StackAllocator.cpp */; }; + 4B8CC135135BFDF900B3E49F /* b2Body.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC134135BFDF900B3E49F /* b2Body.cpp */; }; + 4B8CC138135BFDF900B3E49F /* b2ContactManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC137135BFDF900B3E49F /* b2ContactManager.cpp */; }; + 4B8CC13B135BFDF900B3E49F /* b2Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC13A135BFDF900B3E49F /* b2Fixture.cpp */; }; + 4B8CC13E135BFDF900B3E49F /* b2Island.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC13D135BFDF900B3E49F /* b2Island.cpp */; }; + 4B8CC142135BFDF900B3E49F /* b2World.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC141135BFDF900B3E49F /* b2World.cpp */; }; + 4B8CC145135BFDF900B3E49F /* b2WorldCallbacks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC144135BFDF900B3E49F /* b2WorldCallbacks.cpp */; }; + 4B8CC148135BFDF900B3E49F /* b2CircleContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC147135BFDF900B3E49F /* b2CircleContact.cpp */; }; + 4B8CC14B135BFDF900B3E49F /* b2Contact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC14A135BFDF900B3E49F /* b2Contact.cpp */; }; + 4B8CC14E135BFDF900B3E49F /* b2ContactSolver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC14D135BFDF900B3E49F /* b2ContactSolver.cpp */; }; + 4B8CC152135BFDF900B3E49F /* b2PolygonAndCircleContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC151135BFDF900B3E49F /* b2PolygonAndCircleContact.cpp */; }; + 4B8CC155135BFDF900B3E49F /* b2PolygonContact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC154135BFDF900B3E49F /* b2PolygonContact.cpp */; }; + 4B8CC158135BFDF900B3E49F /* b2TOISolver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC157135BFDF900B3E49F /* b2TOISolver.cpp */; }; + 4B8CC15B135BFDF900B3E49F /* b2DistanceJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC15A135BFDF900B3E49F /* b2DistanceJoint.cpp */; }; + 4B8CC15E135BFDF900B3E49F /* b2FrictionJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC15D135BFDF900B3E49F /* b2FrictionJoint.cpp */; }; + 4B8CC161135BFDF900B3E49F /* b2GearJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC160135BFDF900B3E49F /* b2GearJoint.cpp */; }; + 4B8CC164135BFDF900B3E49F /* b2Joint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC163135BFDF900B3E49F /* b2Joint.cpp */; }; + 4B8CC167135BFDF900B3E49F /* b2LineJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC166135BFDF900B3E49F /* b2LineJoint.cpp */; }; + 4B8CC16A135BFDF900B3E49F /* b2MouseJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC169135BFDF900B3E49F /* b2MouseJoint.cpp */; }; + 4B8CC16D135BFDF900B3E49F /* b2PrismaticJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC16C135BFDF900B3E49F /* b2PrismaticJoint.cpp */; }; + 4B8CC170135BFDF900B3E49F /* b2PulleyJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC16F135BFDF900B3E49F /* b2PulleyJoint.cpp */; }; + 4B8CC173135BFDF900B3E49F /* b2RevoluteJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC172135BFDF900B3E49F /* b2RevoluteJoint.cpp */; }; + 4B8CC176135BFDF900B3E49F /* b2WeldJoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC175135BFDF900B3E49F /* b2WeldJoint.cpp */; }; + 4B8CC17B135BFDF900B3E49F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC17A135BFDF900B3E49F /* main.m */; }; + 4B8CC17E135BFDF900B3E49F /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC17D135BFDF900B3E49F /* AppDelegate.mm */; }; + 4B8CC181135BFDF900B3E49F /* RootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC180135BFDF900B3E49F /* RootViewController.m */; }; + 4B8CC184135BFDF900B3E49F /* HelloWorldLayer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC183135BFDF900B3E49F /* HelloWorldLayer.mm */; }; + 4B8CC187135BFDF900B3E49F /* GLES-Render.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC186135BFDF900B3E49F /* GLES-Render.mm */; }; + 4B8CC18A135BFDF900B3E49F /* blocks.png in Resources */ = {isa = PBXBuildFile; fileRef = 4B8CC189135BFDF900B3E49F /* blocks.png */; }; + 4B8CC1C3135BFEDE00B3E49F /* LocklessRingBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC19C135BFEDE00B3E49F /* LocklessRingBuffer.cpp */; }; + 4B8CC1C4135BFEDE00B3E49F /* BasicPrimitives.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC1A1135BFEDE00B3E49F /* BasicPrimitives.mm */; }; + 4B8CC1C5135BFEDE00B3E49F /* OpenGLServices.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC1A3135BFEDE00B3E49F /* OpenGLServices.mm */; }; + 4B8CC1C6135BFEDE00B3E49F /* RenderTarget.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC1A5135BFEDE00B3E49F /* RenderTarget.mm */; }; + 4B8CC1C7135BFEDE00B3E49F /* MemoryBitset.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC1B1135BFEDE00B3E49F /* MemoryBitset.cpp */; }; + 4B8CC1C8135BFEDE00B3E49F /* MemoryHeap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC1B3135BFEDE00B3E49F /* MemoryHeap.cpp */; }; + 4B8CC1C9135BFEDE00B3E49F /* GLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC1B8135BFEDE00B3E49F /* GLView.m */; }; + 4B8CC1CA135BFEDE00B3E49F /* LittlestAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC1BA135BFEDE00B3E49F /* LittlestAppDelegate.m */; }; + 4B8CC1CB135BFEDE00B3E49F /* LittlestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B8CC1BC135BFEDE00B3E49F /* LittlestViewController.m */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 4B8CBFB0135BFDF600B3E49F /* Littlest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Littlest.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 4B8CBFB4135BFDF600B3E49F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; + 4B8CBFB6135BFDF600B3E49F /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; }; + 4B8CBFB8135BFDF600B3E49F /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; }; + 4B8CBFBA135BFDF600B3E49F /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; + 4B8CBFBC135BFDF600B3E49F /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; }; + 4B8CBFBE135BFDF600B3E49F /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; + 4B8CBFC0135BFDF600B3E49F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + 4B8CBFC2135BFDF600B3E49F /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; + 4B8CBFC6135BFDF600B3E49F /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Default.png; path = Resources/Default.png; sourceTree = ""; }; + 4B8CBFC8135BFDF600B3E49F /* fps_images.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fps_images.png; path = Resources/fps_images.png; sourceTree = ""; }; + 4B8CBFCA135BFDF600B3E49F /* Icon-72.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon-72.png"; path = "Resources/Icon-72.png"; sourceTree = ""; }; + 4B8CBFCC135BFDF600B3E49F /* Icon-Small-50.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon-Small-50.png"; path = "Resources/Icon-Small-50.png"; sourceTree = ""; }; + 4B8CBFCE135BFDF600B3E49F /* Icon-Small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon-Small.png"; path = "Resources/Icon-Small.png"; sourceTree = ""; }; + 4B8CBFD0135BFDF600B3E49F /* Icon-Small@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon-Small@2x.png"; path = "Resources/Icon-Small@2x.png"; sourceTree = ""; }; + 4B8CBFD2135BFDF600B3E49F /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Icon.png; path = Resources/Icon.png; sourceTree = ""; }; + 4B8CBFD4135BFDF600B3E49F /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Icon@2x.png"; path = "Resources/Icon@2x.png"; sourceTree = ""; }; + 4B8CBFD6135BFDF600B3E49F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Resources/Info.plist; sourceTree = ""; }; + 4B8CBFD7135BFDF600B3E49F /* iTunesArtwork */ = {isa = PBXFileReference; lastKnownFileType = file; name = iTunesArtwork; path = Resources/iTunesArtwork; sourceTree = ""; }; + 4B8CBFDA135BFDF600B3E49F /* CCAction.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCAction.h; path = libs/cocos2d/CCAction.h; sourceTree = ""; }; + 4B8CBFDB135BFDF600B3E49F /* CCAction.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCAction.m; path = libs/cocos2d/CCAction.m; sourceTree = ""; }; + 4B8CBFDD135BFDF600B3E49F /* CCActionCamera.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCActionCamera.h; path = libs/cocos2d/CCActionCamera.h; sourceTree = ""; }; + 4B8CBFDE135BFDF600B3E49F /* CCActionCamera.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCActionCamera.m; path = libs/cocos2d/CCActionCamera.m; sourceTree = ""; }; + 4B8CBFE0135BFDF600B3E49F /* CCActionEase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCActionEase.h; path = libs/cocos2d/CCActionEase.h; sourceTree = ""; }; + 4B8CBFE1135BFDF600B3E49F /* CCActionEase.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCActionEase.m; path = libs/cocos2d/CCActionEase.m; sourceTree = ""; }; + 4B8CBFE3135BFDF600B3E49F /* CCActionGrid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCActionGrid.h; path = libs/cocos2d/CCActionGrid.h; sourceTree = ""; }; + 4B8CBFE4135BFDF600B3E49F /* CCActionGrid.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCActionGrid.m; path = libs/cocos2d/CCActionGrid.m; sourceTree = ""; }; + 4B8CBFE6135BFDF600B3E49F /* CCActionGrid3D.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCActionGrid3D.h; path = libs/cocos2d/CCActionGrid3D.h; sourceTree = ""; }; + 4B8CBFE7135BFDF600B3E49F /* CCActionGrid3D.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCActionGrid3D.m; path = libs/cocos2d/CCActionGrid3D.m; sourceTree = ""; }; + 4B8CBFE9135BFDF600B3E49F /* CCActionInstant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCActionInstant.h; path = libs/cocos2d/CCActionInstant.h; sourceTree = ""; }; + 4B8CBFEA135BFDF600B3E49F /* CCActionInstant.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCActionInstant.m; path = libs/cocos2d/CCActionInstant.m; sourceTree = ""; }; + 4B8CBFEC135BFDF600B3E49F /* CCActionInterval.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCActionInterval.h; path = libs/cocos2d/CCActionInterval.h; sourceTree = ""; }; + 4B8CBFED135BFDF600B3E49F /* CCActionInterval.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCActionInterval.m; path = libs/cocos2d/CCActionInterval.m; sourceTree = ""; }; + 4B8CBFEF135BFDF600B3E49F /* CCActionManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCActionManager.h; path = libs/cocos2d/CCActionManager.h; sourceTree = ""; }; + 4B8CBFF0135BFDF600B3E49F /* CCActionManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCActionManager.m; path = libs/cocos2d/CCActionManager.m; sourceTree = ""; }; + 4B8CBFF2135BFDF600B3E49F /* CCActionPageTurn3D.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCActionPageTurn3D.h; path = libs/cocos2d/CCActionPageTurn3D.h; sourceTree = ""; }; + 4B8CBFF3135BFDF600B3E49F /* CCActionPageTurn3D.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCActionPageTurn3D.m; path = libs/cocos2d/CCActionPageTurn3D.m; sourceTree = ""; }; + 4B8CBFF5135BFDF600B3E49F /* CCActionProgressTimer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCActionProgressTimer.h; path = libs/cocos2d/CCActionProgressTimer.h; sourceTree = ""; }; + 4B8CBFF6135BFDF600B3E49F /* CCActionProgressTimer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCActionProgressTimer.m; path = libs/cocos2d/CCActionProgressTimer.m; sourceTree = ""; }; + 4B8CBFF8135BFDF600B3E49F /* CCActionTiledGrid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCActionTiledGrid.h; path = libs/cocos2d/CCActionTiledGrid.h; sourceTree = ""; }; + 4B8CBFF9135BFDF600B3E49F /* CCActionTiledGrid.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCActionTiledGrid.m; path = libs/cocos2d/CCActionTiledGrid.m; sourceTree = ""; }; + 4B8CBFFB135BFDF600B3E49F /* CCActionTween.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCActionTween.h; path = libs/cocos2d/CCActionTween.h; sourceTree = ""; }; + 4B8CBFFC135BFDF700B3E49F /* CCActionTween.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCActionTween.m; path = libs/cocos2d/CCActionTween.m; sourceTree = ""; }; + 4B8CBFFE135BFDF700B3E49F /* CCAnimation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCAnimation.h; path = libs/cocos2d/CCAnimation.h; sourceTree = ""; }; + 4B8CBFFF135BFDF700B3E49F /* CCAnimation.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCAnimation.m; path = libs/cocos2d/CCAnimation.m; sourceTree = ""; }; + 4B8CC001135BFDF700B3E49F /* CCAnimationCache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCAnimationCache.h; path = libs/cocos2d/CCAnimationCache.h; sourceTree = ""; }; + 4B8CC002135BFDF700B3E49F /* CCAnimationCache.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCAnimationCache.m; path = libs/cocos2d/CCAnimationCache.m; sourceTree = ""; }; + 4B8CC004135BFDF700B3E49F /* CCAtlasNode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCAtlasNode.h; path = libs/cocos2d/CCAtlasNode.h; sourceTree = ""; }; + 4B8CC005135BFDF700B3E49F /* CCAtlasNode.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCAtlasNode.m; path = libs/cocos2d/CCAtlasNode.m; sourceTree = ""; }; + 4B8CC007135BFDF700B3E49F /* CCBlockSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCBlockSupport.h; path = libs/cocos2d/CCBlockSupport.h; sourceTree = ""; }; + 4B8CC008135BFDF700B3E49F /* CCBlockSupport.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCBlockSupport.m; path = libs/cocos2d/CCBlockSupport.m; sourceTree = ""; }; + 4B8CC00A135BFDF700B3E49F /* CCCamera.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCCamera.h; path = libs/cocos2d/CCCamera.h; sourceTree = ""; }; + 4B8CC00B135BFDF700B3E49F /* CCCamera.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCCamera.m; path = libs/cocos2d/CCCamera.m; sourceTree = ""; }; + 4B8CC00D135BFDF700B3E49F /* ccConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ccConfig.h; path = libs/cocos2d/ccConfig.h; sourceTree = ""; }; + 4B8CC00E135BFDF700B3E49F /* CCConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCConfiguration.h; path = libs/cocos2d/CCConfiguration.h; sourceTree = ""; }; + 4B8CC00F135BFDF700B3E49F /* CCConfiguration.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCConfiguration.m; path = libs/cocos2d/CCConfiguration.m; sourceTree = ""; }; + 4B8CC011135BFDF700B3E49F /* CCDirector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCDirector.h; path = libs/cocos2d/CCDirector.h; sourceTree = ""; }; + 4B8CC012135BFDF700B3E49F /* CCDirector.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCDirector.m; path = libs/cocos2d/CCDirector.m; sourceTree = ""; }; + 4B8CC014135BFDF700B3E49F /* CCDrawingPrimitives.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCDrawingPrimitives.h; path = libs/cocos2d/CCDrawingPrimitives.h; sourceTree = ""; }; + 4B8CC015135BFDF700B3E49F /* CCDrawingPrimitives.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCDrawingPrimitives.m; path = libs/cocos2d/CCDrawingPrimitives.m; sourceTree = ""; }; + 4B8CC017135BFDF700B3E49F /* CCGrabber.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCGrabber.h; path = libs/cocos2d/CCGrabber.h; sourceTree = ""; }; + 4B8CC018135BFDF700B3E49F /* CCGrabber.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCGrabber.m; path = libs/cocos2d/CCGrabber.m; sourceTree = ""; }; + 4B8CC01A135BFDF700B3E49F /* CCGrid.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCGrid.h; path = libs/cocos2d/CCGrid.h; sourceTree = ""; }; + 4B8CC01B135BFDF700B3E49F /* CCGrid.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCGrid.m; path = libs/cocos2d/CCGrid.m; sourceTree = ""; }; + 4B8CC01D135BFDF700B3E49F /* CCLabelAtlas.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCLabelAtlas.h; path = libs/cocos2d/CCLabelAtlas.h; sourceTree = ""; }; + 4B8CC01E135BFDF700B3E49F /* CCLabelAtlas.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCLabelAtlas.m; path = libs/cocos2d/CCLabelAtlas.m; sourceTree = ""; }; + 4B8CC020135BFDF700B3E49F /* CCLabelBMFont.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCLabelBMFont.h; path = libs/cocos2d/CCLabelBMFont.h; sourceTree = ""; }; + 4B8CC021135BFDF700B3E49F /* CCLabelBMFont.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCLabelBMFont.m; path = libs/cocos2d/CCLabelBMFont.m; sourceTree = ""; }; + 4B8CC023135BFDF700B3E49F /* CCLabelTTF.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCLabelTTF.h; path = libs/cocos2d/CCLabelTTF.h; sourceTree = ""; }; + 4B8CC024135BFDF700B3E49F /* CCLabelTTF.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCLabelTTF.m; path = libs/cocos2d/CCLabelTTF.m; sourceTree = ""; }; + 4B8CC026135BFDF700B3E49F /* CCLayer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCLayer.h; path = libs/cocos2d/CCLayer.h; sourceTree = ""; }; + 4B8CC027135BFDF700B3E49F /* CCLayer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCLayer.m; path = libs/cocos2d/CCLayer.m; sourceTree = ""; }; + 4B8CC029135BFDF700B3E49F /* ccMacros.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ccMacros.h; path = libs/cocos2d/ccMacros.h; sourceTree = ""; }; + 4B8CC02A135BFDF700B3E49F /* CCMenu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCMenu.h; path = libs/cocos2d/CCMenu.h; sourceTree = ""; }; + 4B8CC02B135BFDF700B3E49F /* CCMenu.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCMenu.m; path = libs/cocos2d/CCMenu.m; sourceTree = ""; }; + 4B8CC02D135BFDF700B3E49F /* CCMenuItem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCMenuItem.h; path = libs/cocos2d/CCMenuItem.h; sourceTree = ""; }; + 4B8CC02E135BFDF700B3E49F /* CCMenuItem.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCMenuItem.m; path = libs/cocos2d/CCMenuItem.m; sourceTree = ""; }; + 4B8CC030135BFDF700B3E49F /* CCMotionStreak.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCMotionStreak.h; path = libs/cocos2d/CCMotionStreak.h; sourceTree = ""; }; + 4B8CC031135BFDF700B3E49F /* CCMotionStreak.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCMotionStreak.m; path = libs/cocos2d/CCMotionStreak.m; sourceTree = ""; }; + 4B8CC033135BFDF700B3E49F /* CCNode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCNode.h; path = libs/cocos2d/CCNode.h; sourceTree = ""; }; + 4B8CC034135BFDF700B3E49F /* CCNode.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCNode.m; path = libs/cocos2d/CCNode.m; sourceTree = ""; }; + 4B8CC036135BFDF700B3E49F /* CCParallaxNode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCParallaxNode.h; path = libs/cocos2d/CCParallaxNode.h; sourceTree = ""; }; + 4B8CC037135BFDF700B3E49F /* CCParallaxNode.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCParallaxNode.m; path = libs/cocos2d/CCParallaxNode.m; sourceTree = ""; }; + 4B8CC039135BFDF700B3E49F /* CCParticleExamples.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCParticleExamples.h; path = libs/cocos2d/CCParticleExamples.h; sourceTree = ""; }; + 4B8CC03A135BFDF700B3E49F /* CCParticleExamples.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCParticleExamples.m; path = libs/cocos2d/CCParticleExamples.m; sourceTree = ""; }; + 4B8CC03C135BFDF700B3E49F /* CCParticleSystem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCParticleSystem.h; path = libs/cocos2d/CCParticleSystem.h; sourceTree = ""; }; + 4B8CC03D135BFDF700B3E49F /* CCParticleSystem.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCParticleSystem.m; path = libs/cocos2d/CCParticleSystem.m; sourceTree = ""; }; + 4B8CC03F135BFDF700B3E49F /* CCParticleSystemPoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCParticleSystemPoint.h; path = libs/cocos2d/CCParticleSystemPoint.h; sourceTree = ""; }; + 4B8CC040135BFDF700B3E49F /* CCParticleSystemPoint.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCParticleSystemPoint.m; path = libs/cocos2d/CCParticleSystemPoint.m; sourceTree = ""; }; + 4B8CC042135BFDF700B3E49F /* CCParticleSystemQuad.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCParticleSystemQuad.h; path = libs/cocos2d/CCParticleSystemQuad.h; sourceTree = ""; }; + 4B8CC043135BFDF700B3E49F /* CCParticleSystemQuad.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCParticleSystemQuad.m; path = libs/cocos2d/CCParticleSystemQuad.m; sourceTree = ""; }; + 4B8CC045135BFDF700B3E49F /* CCProgressTimer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCProgressTimer.h; path = libs/cocos2d/CCProgressTimer.h; sourceTree = ""; }; + 4B8CC046135BFDF700B3E49F /* CCProgressTimer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCProgressTimer.m; path = libs/cocos2d/CCProgressTimer.m; sourceTree = ""; }; + 4B8CC048135BFDF700B3E49F /* CCProtocols.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCProtocols.h; path = libs/cocos2d/CCProtocols.h; sourceTree = ""; }; + 4B8CC049135BFDF700B3E49F /* CCRenderTexture.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCRenderTexture.h; path = libs/cocos2d/CCRenderTexture.h; sourceTree = ""; }; + 4B8CC04A135BFDF700B3E49F /* CCRenderTexture.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCRenderTexture.m; path = libs/cocos2d/CCRenderTexture.m; sourceTree = ""; }; + 4B8CC04C135BFDF700B3E49F /* CCRibbon.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCRibbon.h; path = libs/cocos2d/CCRibbon.h; sourceTree = ""; }; + 4B8CC04D135BFDF700B3E49F /* CCRibbon.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCRibbon.m; path = libs/cocos2d/CCRibbon.m; sourceTree = ""; }; + 4B8CC04F135BFDF700B3E49F /* CCScene.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCScene.h; path = libs/cocos2d/CCScene.h; sourceTree = ""; }; + 4B8CC050135BFDF700B3E49F /* CCScene.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCScene.m; path = libs/cocos2d/CCScene.m; sourceTree = ""; }; + 4B8CC052135BFDF700B3E49F /* CCScheduler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCScheduler.h; path = libs/cocos2d/CCScheduler.h; sourceTree = ""; }; + 4B8CC053135BFDF700B3E49F /* CCScheduler.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCScheduler.m; path = libs/cocos2d/CCScheduler.m; sourceTree = ""; }; + 4B8CC055135BFDF700B3E49F /* CCSprite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCSprite.h; path = libs/cocos2d/CCSprite.h; sourceTree = ""; }; + 4B8CC056135BFDF700B3E49F /* CCSprite.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCSprite.m; path = libs/cocos2d/CCSprite.m; sourceTree = ""; }; + 4B8CC058135BFDF700B3E49F /* CCSpriteBatchNode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCSpriteBatchNode.h; path = libs/cocos2d/CCSpriteBatchNode.h; sourceTree = ""; }; + 4B8CC059135BFDF700B3E49F /* CCSpriteBatchNode.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCSpriteBatchNode.m; path = libs/cocos2d/CCSpriteBatchNode.m; sourceTree = ""; }; + 4B8CC05B135BFDF700B3E49F /* CCSpriteFrame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCSpriteFrame.h; path = libs/cocos2d/CCSpriteFrame.h; sourceTree = ""; }; + 4B8CC05C135BFDF700B3E49F /* CCSpriteFrame.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCSpriteFrame.m; path = libs/cocos2d/CCSpriteFrame.m; sourceTree = ""; }; + 4B8CC05E135BFDF700B3E49F /* CCSpriteFrameCache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCSpriteFrameCache.h; path = libs/cocos2d/CCSpriteFrameCache.h; sourceTree = ""; }; + 4B8CC05F135BFDF700B3E49F /* CCSpriteFrameCache.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCSpriteFrameCache.m; path = libs/cocos2d/CCSpriteFrameCache.m; sourceTree = ""; }; + 4B8CC061135BFDF700B3E49F /* CCTexture2D.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTexture2D.h; path = libs/cocos2d/CCTexture2D.h; sourceTree = ""; }; + 4B8CC062135BFDF700B3E49F /* CCTexture2D.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTexture2D.m; path = libs/cocos2d/CCTexture2D.m; sourceTree = ""; }; + 4B8CC064135BFDF700B3E49F /* CCTextureAtlas.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTextureAtlas.h; path = libs/cocos2d/CCTextureAtlas.h; sourceTree = ""; }; + 4B8CC065135BFDF700B3E49F /* CCTextureAtlas.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTextureAtlas.m; path = libs/cocos2d/CCTextureAtlas.m; sourceTree = ""; }; + 4B8CC067135BFDF700B3E49F /* CCTextureCache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTextureCache.h; path = libs/cocos2d/CCTextureCache.h; sourceTree = ""; }; + 4B8CC068135BFDF700B3E49F /* CCTextureCache.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTextureCache.m; path = libs/cocos2d/CCTextureCache.m; sourceTree = ""; }; + 4B8CC06A135BFDF700B3E49F /* CCTexturePVR.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTexturePVR.h; path = libs/cocos2d/CCTexturePVR.h; sourceTree = ""; }; + 4B8CC06B135BFDF700B3E49F /* CCTexturePVR.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTexturePVR.m; path = libs/cocos2d/CCTexturePVR.m; sourceTree = ""; }; + 4B8CC06D135BFDF700B3E49F /* CCTileMapAtlas.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTileMapAtlas.h; path = libs/cocos2d/CCTileMapAtlas.h; sourceTree = ""; }; + 4B8CC06E135BFDF700B3E49F /* CCTileMapAtlas.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTileMapAtlas.m; path = libs/cocos2d/CCTileMapAtlas.m; sourceTree = ""; }; + 4B8CC070135BFDF700B3E49F /* CCTMXLayer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTMXLayer.h; path = libs/cocos2d/CCTMXLayer.h; sourceTree = ""; }; + 4B8CC071135BFDF700B3E49F /* CCTMXLayer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTMXLayer.m; path = libs/cocos2d/CCTMXLayer.m; sourceTree = ""; }; + 4B8CC073135BFDF700B3E49F /* CCTMXObjectGroup.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTMXObjectGroup.h; path = libs/cocos2d/CCTMXObjectGroup.h; sourceTree = ""; }; + 4B8CC074135BFDF700B3E49F /* CCTMXObjectGroup.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTMXObjectGroup.m; path = libs/cocos2d/CCTMXObjectGroup.m; sourceTree = ""; }; + 4B8CC076135BFDF700B3E49F /* CCTMXTiledMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTMXTiledMap.h; path = libs/cocos2d/CCTMXTiledMap.h; sourceTree = ""; }; + 4B8CC077135BFDF700B3E49F /* CCTMXTiledMap.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTMXTiledMap.m; path = libs/cocos2d/CCTMXTiledMap.m; sourceTree = ""; }; + 4B8CC079135BFDF700B3E49F /* CCTMXXMLParser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTMXXMLParser.h; path = libs/cocos2d/CCTMXXMLParser.h; sourceTree = ""; }; + 4B8CC07A135BFDF700B3E49F /* CCTMXXMLParser.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTMXXMLParser.m; path = libs/cocos2d/CCTMXXMLParser.m; sourceTree = ""; }; + 4B8CC07C135BFDF700B3E49F /* CCTransition.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTransition.h; path = libs/cocos2d/CCTransition.h; sourceTree = ""; }; + 4B8CC07D135BFDF700B3E49F /* CCTransition.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTransition.m; path = libs/cocos2d/CCTransition.m; sourceTree = ""; }; + 4B8CC07F135BFDF700B3E49F /* CCTransitionPageTurn.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTransitionPageTurn.h; path = libs/cocos2d/CCTransitionPageTurn.h; sourceTree = ""; }; + 4B8CC080135BFDF700B3E49F /* CCTransitionPageTurn.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTransitionPageTurn.m; path = libs/cocos2d/CCTransitionPageTurn.m; sourceTree = ""; }; + 4B8CC082135BFDF700B3E49F /* CCTransitionRadial.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTransitionRadial.h; path = libs/cocos2d/CCTransitionRadial.h; sourceTree = ""; }; + 4B8CC083135BFDF700B3E49F /* CCTransitionRadial.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTransitionRadial.m; path = libs/cocos2d/CCTransitionRadial.m; sourceTree = ""; }; + 4B8CC085135BFDF800B3E49F /* ccTypes.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ccTypes.h; path = libs/cocos2d/ccTypes.h; sourceTree = ""; }; + 4B8CC086135BFDF800B3E49F /* cocos2d.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cocos2d.h; path = libs/cocos2d/cocos2d.h; sourceTree = ""; }; + 4B8CC087135BFDF800B3E49F /* cocos2d.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = cocos2d.m; path = libs/cocos2d/cocos2d.m; sourceTree = ""; }; + 4B8CC089135BFDF800B3E49F /* CCGL.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCGL.h; path = libs/cocos2d/Platforms/CCGL.h; sourceTree = ""; }; + 4B8CC08A135BFDF800B3E49F /* CCNS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCNS.h; path = libs/cocos2d/Platforms/CCNS.h; sourceTree = ""; }; + 4B8CC08B135BFDF800B3E49F /* CCDirectorIOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCDirectorIOS.h; path = libs/cocos2d/Platforms/iOS/CCDirectorIOS.h; sourceTree = ""; }; + 4B8CC08C135BFDF800B3E49F /* CCDirectorIOS.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCDirectorIOS.m; path = libs/cocos2d/Platforms/iOS/CCDirectorIOS.m; sourceTree = ""; }; + 4B8CC08E135BFDF800B3E49F /* CCTouchDelegateProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTouchDelegateProtocol.h; path = libs/cocos2d/Platforms/iOS/CCTouchDelegateProtocol.h; sourceTree = ""; }; + 4B8CC08F135BFDF800B3E49F /* CCTouchDispatcher.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTouchDispatcher.h; path = libs/cocos2d/Platforms/iOS/CCTouchDispatcher.h; sourceTree = ""; }; + 4B8CC090135BFDF800B3E49F /* CCTouchDispatcher.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTouchDispatcher.m; path = libs/cocos2d/Platforms/iOS/CCTouchDispatcher.m; sourceTree = ""; }; + 4B8CC092135BFDF800B3E49F /* CCTouchHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCTouchHandler.h; path = libs/cocos2d/Platforms/iOS/CCTouchHandler.h; sourceTree = ""; }; + 4B8CC093135BFDF800B3E49F /* CCTouchHandler.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCTouchHandler.m; path = libs/cocos2d/Platforms/iOS/CCTouchHandler.m; sourceTree = ""; }; + 4B8CC095135BFDF800B3E49F /* EAGLView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = EAGLView.h; path = libs/cocos2d/Platforms/iOS/EAGLView.h; sourceTree = ""; }; + 4B8CC096135BFDF800B3E49F /* EAGLView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = EAGLView.m; path = libs/cocos2d/Platforms/iOS/EAGLView.m; sourceTree = ""; }; + 4B8CC098135BFDF800B3E49F /* ES1Renderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ES1Renderer.h; path = libs/cocos2d/Platforms/iOS/ES1Renderer.h; sourceTree = ""; }; + 4B8CC099135BFDF800B3E49F /* ES1Renderer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ES1Renderer.m; path = libs/cocos2d/Platforms/iOS/ES1Renderer.m; sourceTree = ""; }; + 4B8CC09B135BFDF800B3E49F /* ESRenderer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ESRenderer.h; path = libs/cocos2d/Platforms/iOS/ESRenderer.h; sourceTree = ""; }; + 4B8CC09C135BFDF800B3E49F /* glu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = glu.c; path = libs/cocos2d/Platforms/iOS/glu.c; sourceTree = ""; }; + 4B8CC09E135BFDF800B3E49F /* glu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = glu.h; path = libs/cocos2d/Platforms/iOS/glu.h; sourceTree = ""; }; + 4B8CC09F135BFDF800B3E49F /* CCDirectorMac.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCDirectorMac.h; path = libs/cocos2d/Platforms/Mac/CCDirectorMac.h; sourceTree = ""; }; + 4B8CC0A0135BFDF800B3E49F /* CCDirectorMac.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCDirectorMac.m; path = libs/cocos2d/Platforms/Mac/CCDirectorMac.m; sourceTree = ""; }; + 4B8CC0A2135BFDF800B3E49F /* CCEventDispatcher.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCEventDispatcher.h; path = libs/cocos2d/Platforms/Mac/CCEventDispatcher.h; sourceTree = ""; }; + 4B8CC0A3135BFDF800B3E49F /* CCEventDispatcher.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCEventDispatcher.m; path = libs/cocos2d/Platforms/Mac/CCEventDispatcher.m; sourceTree = ""; }; + 4B8CC0A5135BFDF800B3E49F /* MacGLView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MacGLView.h; path = libs/cocos2d/Platforms/Mac/MacGLView.h; sourceTree = ""; }; + 4B8CC0A6135BFDF800B3E49F /* MacGLView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = MacGLView.m; path = libs/cocos2d/Platforms/Mac/MacGLView.m; sourceTree = ""; }; + 4B8CC0A8135BFDF800B3E49F /* MacWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MacWindow.h; path = libs/cocos2d/Platforms/Mac/MacWindow.h; sourceTree = ""; }; + 4B8CC0A9135BFDF800B3E49F /* MacWindow.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = MacWindow.m; path = libs/cocos2d/Platforms/Mac/MacWindow.m; sourceTree = ""; }; + 4B8CC0AB135BFDF800B3E49F /* base64.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = base64.c; path = libs/cocos2d/Support/base64.c; sourceTree = ""; }; + 4B8CC0AD135BFDF800B3E49F /* base64.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = base64.h; path = libs/cocos2d/Support/base64.h; sourceTree = ""; }; + 4B8CC0AE135BFDF800B3E49F /* CCArray.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCArray.h; path = libs/cocos2d/Support/CCArray.h; sourceTree = ""; }; + 4B8CC0AF135BFDF800B3E49F /* CCArray.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCArray.m; path = libs/cocos2d/Support/CCArray.m; sourceTree = ""; }; + 4B8CC0B1135BFDF800B3E49F /* ccCArray.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ccCArray.h; path = libs/cocos2d/Support/ccCArray.h; sourceTree = ""; }; + 4B8CC0B2135BFDF800B3E49F /* CCFileUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCFileUtils.h; path = libs/cocos2d/Support/CCFileUtils.h; sourceTree = ""; }; + 4B8CC0B3135BFDF800B3E49F /* CCFileUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCFileUtils.m; path = libs/cocos2d/Support/CCFileUtils.m; sourceTree = ""; }; + 4B8CC0B5135BFDF800B3E49F /* CCProfiling.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CCProfiling.h; path = libs/cocos2d/Support/CCProfiling.h; sourceTree = ""; }; + 4B8CC0B6135BFDF800B3E49F /* CCProfiling.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CCProfiling.m; path = libs/cocos2d/Support/CCProfiling.m; sourceTree = ""; }; + 4B8CC0B8135BFDF800B3E49F /* ccUtils.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = ccUtils.c; path = libs/cocos2d/Support/ccUtils.c; sourceTree = ""; }; + 4B8CC0BA135BFDF800B3E49F /* ccUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ccUtils.h; path = libs/cocos2d/Support/ccUtils.h; sourceTree = ""; }; + 4B8CC0BB135BFDF800B3E49F /* CGPointExtension.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CGPointExtension.h; path = libs/cocos2d/Support/CGPointExtension.h; sourceTree = ""; }; + 4B8CC0BC135BFDF800B3E49F /* CGPointExtension.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CGPointExtension.m; path = libs/cocos2d/Support/CGPointExtension.m; sourceTree = ""; }; + 4B8CC0BE135BFDF800B3E49F /* OpenGL_Internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = OpenGL_Internal.h; path = libs/cocos2d/Support/OpenGL_Internal.h; sourceTree = ""; }; + 4B8CC0BF135BFDF800B3E49F /* TGAlib.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TGAlib.h; path = libs/cocos2d/Support/TGAlib.h; sourceTree = ""; }; + 4B8CC0C0135BFDF800B3E49F /* TGAlib.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = TGAlib.m; path = libs/cocos2d/Support/TGAlib.m; sourceTree = ""; }; + 4B8CC0C2135BFDF800B3E49F /* TransformUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TransformUtils.h; path = libs/cocos2d/Support/TransformUtils.h; sourceTree = ""; }; + 4B8CC0C3135BFDF800B3E49F /* TransformUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = TransformUtils.m; path = libs/cocos2d/Support/TransformUtils.m; sourceTree = ""; }; + 4B8CC0C5135BFDF800B3E49F /* uthash.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = uthash.h; path = libs/cocos2d/Support/uthash.h; sourceTree = ""; }; + 4B8CC0C6135BFDF800B3E49F /* utlist.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = utlist.h; path = libs/cocos2d/Support/utlist.h; sourceTree = ""; }; + 4B8CC0C7135BFDF800B3E49F /* ZipUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ZipUtils.h; path = libs/cocos2d/Support/ZipUtils.h; sourceTree = ""; }; + 4B8CC0C8135BFDF800B3E49F /* ZipUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ZipUtils.m; path = libs/cocos2d/Support/ZipUtils.m; sourceTree = ""; }; + 4B8CC0CB135BFDF800B3E49F /* CDAudioManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CDAudioManager.h; path = libs/CocosDenshion/CDAudioManager.h; sourceTree = ""; }; + 4B8CC0CC135BFDF800B3E49F /* CDAudioManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CDAudioManager.m; path = libs/CocosDenshion/CDAudioManager.m; sourceTree = ""; }; + 4B8CC0CE135BFDF800B3E49F /* CDConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CDConfig.h; path = libs/CocosDenshion/CDConfig.h; sourceTree = ""; }; + 4B8CC0CF135BFDF800B3E49F /* CDOpenALSupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CDOpenALSupport.h; path = libs/CocosDenshion/CDOpenALSupport.h; sourceTree = ""; }; + 4B8CC0D0135BFDF800B3E49F /* CDOpenALSupport.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CDOpenALSupport.m; path = libs/CocosDenshion/CDOpenALSupport.m; sourceTree = ""; }; + 4B8CC0D2135BFDF800B3E49F /* CocosDenshion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CocosDenshion.h; path = libs/CocosDenshion/CocosDenshion.h; sourceTree = ""; }; + 4B8CC0D3135BFDF800B3E49F /* CocosDenshion.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CocosDenshion.m; path = libs/CocosDenshion/CocosDenshion.m; sourceTree = ""; }; + 4B8CC0D5135BFDF800B3E49F /* SimpleAudioEngine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SimpleAudioEngine.h; path = libs/CocosDenshion/SimpleAudioEngine.h; sourceTree = ""; }; + 4B8CC0D6135BFDF800B3E49F /* SimpleAudioEngine.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = SimpleAudioEngine.m; path = libs/CocosDenshion/SimpleAudioEngine.m; sourceTree = ""; }; + 4B8CC0D9135BFDF800B3E49F /* CLScoreServerPost.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CLScoreServerPost.h; path = libs/cocoslive/CLScoreServerPost.h; sourceTree = ""; }; + 4B8CC0DA135BFDF800B3E49F /* CLScoreServerPost.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CLScoreServerPost.m; path = libs/cocoslive/CLScoreServerPost.m; sourceTree = ""; }; + 4B8CC0DC135BFDF800B3E49F /* CLScoreServerRequest.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CLScoreServerRequest.h; path = libs/cocoslive/CLScoreServerRequest.h; sourceTree = ""; }; + 4B8CC0DD135BFDF800B3E49F /* CLScoreServerRequest.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CLScoreServerRequest.m; path = libs/cocoslive/CLScoreServerRequest.m; sourceTree = ""; }; + 4B8CC0DF135BFDF800B3E49F /* cocoslive.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = cocoslive.h; path = libs/cocoslive/cocoslive.h; sourceTree = ""; }; + 4B8CC0E0135BFDF800B3E49F /* cocoslive.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = cocoslive.m; path = libs/cocoslive/cocoslive.m; sourceTree = ""; }; + 4B8CC0E3135BFDF800B3E49F /* FontLabel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = FontLabel.h; path = libs/FontLabel/FontLabel.h; sourceTree = ""; }; + 4B8CC0E4135BFDF800B3E49F /* FontLabel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = FontLabel.m; path = libs/FontLabel/FontLabel.m; sourceTree = ""; }; + 4B8CC0E6135BFDF800B3E49F /* FontLabelStringDrawing.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = FontLabelStringDrawing.h; path = libs/FontLabel/FontLabelStringDrawing.h; sourceTree = ""; }; + 4B8CC0E7135BFDF800B3E49F /* FontLabelStringDrawing.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = FontLabelStringDrawing.m; path = libs/FontLabel/FontLabelStringDrawing.m; sourceTree = ""; }; + 4B8CC0E9135BFDF800B3E49F /* FontManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = FontManager.h; path = libs/FontLabel/FontManager.h; sourceTree = ""; }; + 4B8CC0EA135BFDF800B3E49F /* FontManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = FontManager.m; path = libs/FontLabel/FontManager.m; sourceTree = ""; }; + 4B8CC0EC135BFDF800B3E49F /* ZAttributedString.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ZAttributedString.h; path = libs/FontLabel/ZAttributedString.h; sourceTree = ""; }; + 4B8CC0ED135BFDF800B3E49F /* ZAttributedString.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ZAttributedString.m; path = libs/FontLabel/ZAttributedString.m; sourceTree = ""; }; + 4B8CC0EF135BFDF800B3E49F /* ZAttributedStringPrivate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ZAttributedStringPrivate.h; path = libs/FontLabel/ZAttributedStringPrivate.h; sourceTree = ""; }; + 4B8CC0F0135BFDF800B3E49F /* ZFont.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ZFont.h; path = libs/FontLabel/ZFont.h; sourceTree = ""; }; + 4B8CC0F1135BFDF800B3E49F /* ZFont.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ZFont.m; path = libs/FontLabel/ZFont.m; sourceTree = ""; }; + 4B8CC0F4135BFDF800B3E49F /* CDataScanner.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CDataScanner.h; path = libs/TouchJSON/CDataScanner.h; sourceTree = ""; }; + 4B8CC0F5135BFDF800B3E49F /* CDataScanner.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CDataScanner.m; path = libs/TouchJSON/CDataScanner.m; sourceTree = ""; }; + 4B8CC0F7135BFDF800B3E49F /* CDataScanner_Extensions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CDataScanner_Extensions.h; path = libs/TouchJSON/Extensions/CDataScanner_Extensions.h; sourceTree = ""; }; + 4B8CC0F8135BFDF800B3E49F /* CDataScanner_Extensions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CDataScanner_Extensions.m; path = libs/TouchJSON/Extensions/CDataScanner_Extensions.m; sourceTree = ""; }; + 4B8CC0FA135BFDF800B3E49F /* NSCharacterSet_Extensions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = NSCharacterSet_Extensions.h; path = libs/TouchJSON/Extensions/NSCharacterSet_Extensions.h; sourceTree = ""; }; + 4B8CC0FB135BFDF800B3E49F /* NSCharacterSet_Extensions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = NSCharacterSet_Extensions.m; path = libs/TouchJSON/Extensions/NSCharacterSet_Extensions.m; sourceTree = ""; }; + 4B8CC0FD135BFDF800B3E49F /* NSDictionary_JSONExtensions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = NSDictionary_JSONExtensions.h; path = libs/TouchJSON/Extensions/NSDictionary_JSONExtensions.h; sourceTree = ""; }; + 4B8CC0FE135BFDF800B3E49F /* NSDictionary_JSONExtensions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = NSDictionary_JSONExtensions.m; path = libs/TouchJSON/Extensions/NSDictionary_JSONExtensions.m; sourceTree = ""; }; + 4B8CC100135BFDF800B3E49F /* NSScanner_Extensions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = NSScanner_Extensions.h; path = libs/TouchJSON/Extensions/NSScanner_Extensions.h; sourceTree = ""; }; + 4B8CC101135BFDF800B3E49F /* NSScanner_Extensions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = NSScanner_Extensions.m; path = libs/TouchJSON/Extensions/NSScanner_Extensions.m; sourceTree = ""; }; + 4B8CC103135BFDF800B3E49F /* CJSONDeserializer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CJSONDeserializer.h; path = libs/TouchJSON/JSON/CJSONDeserializer.h; sourceTree = ""; }; + 4B8CC104135BFDF800B3E49F /* CJSONDeserializer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CJSONDeserializer.m; path = libs/TouchJSON/JSON/CJSONDeserializer.m; sourceTree = ""; }; + 4B8CC106135BFDF800B3E49F /* CJSONScanner.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CJSONScanner.h; path = libs/TouchJSON/JSON/CJSONScanner.h; sourceTree = ""; }; + 4B8CC107135BFDF800B3E49F /* CJSONScanner.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CJSONScanner.m; path = libs/TouchJSON/JSON/CJSONScanner.m; sourceTree = ""; }; + 4B8CC109135BFDF800B3E49F /* CJSONSerializer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CJSONSerializer.h; path = libs/TouchJSON/JSON/CJSONSerializer.h; sourceTree = ""; }; + 4B8CC10A135BFDF800B3E49F /* CJSONSerializer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CJSONSerializer.m; path = libs/TouchJSON/JSON/CJSONSerializer.m; sourceTree = ""; }; + 4B8CC10D135BFDF800B3E49F /* Box2D.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Box2D.h; path = libs/Box2D/Box2D.h; sourceTree = ""; }; + 4B8CC10E135BFDF800B3E49F /* b2BroadPhase.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2BroadPhase.cpp; path = libs/Box2D/Collision/b2BroadPhase.cpp; sourceTree = ""; }; + 4B8CC110135BFDF800B3E49F /* b2BroadPhase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2BroadPhase.h; path = libs/Box2D/Collision/b2BroadPhase.h; sourceTree = ""; }; + 4B8CC111135BFDF800B3E49F /* b2CollideCircle.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2CollideCircle.cpp; path = libs/Box2D/Collision/b2CollideCircle.cpp; sourceTree = ""; }; + 4B8CC113135BFDF900B3E49F /* b2CollidePolygon.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2CollidePolygon.cpp; path = libs/Box2D/Collision/b2CollidePolygon.cpp; sourceTree = ""; }; + 4B8CC115135BFDF900B3E49F /* b2Collision.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2Collision.cpp; path = libs/Box2D/Collision/b2Collision.cpp; sourceTree = ""; }; + 4B8CC117135BFDF900B3E49F /* b2Collision.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2Collision.h; path = libs/Box2D/Collision/b2Collision.h; sourceTree = ""; }; + 4B8CC118135BFDF900B3E49F /* b2Distance.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2Distance.cpp; path = libs/Box2D/Collision/b2Distance.cpp; sourceTree = ""; }; + 4B8CC11A135BFDF900B3E49F /* b2Distance.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2Distance.h; path = libs/Box2D/Collision/b2Distance.h; sourceTree = ""; }; + 4B8CC11B135BFDF900B3E49F /* b2DynamicTree.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2DynamicTree.cpp; path = libs/Box2D/Collision/b2DynamicTree.cpp; sourceTree = ""; }; + 4B8CC11D135BFDF900B3E49F /* b2DynamicTree.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2DynamicTree.h; path = libs/Box2D/Collision/b2DynamicTree.h; sourceTree = ""; }; + 4B8CC11E135BFDF900B3E49F /* b2TimeOfImpact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2TimeOfImpact.cpp; path = libs/Box2D/Collision/b2TimeOfImpact.cpp; sourceTree = ""; }; + 4B8CC120135BFDF900B3E49F /* b2TimeOfImpact.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2TimeOfImpact.h; path = libs/Box2D/Collision/b2TimeOfImpact.h; sourceTree = ""; }; + 4B8CC121135BFDF900B3E49F /* b2CircleShape.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2CircleShape.cpp; path = libs/Box2D/Collision/Shapes/b2CircleShape.cpp; sourceTree = ""; }; + 4B8CC123135BFDF900B3E49F /* b2CircleShape.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2CircleShape.h; path = libs/Box2D/Collision/Shapes/b2CircleShape.h; sourceTree = ""; }; + 4B8CC124135BFDF900B3E49F /* b2PolygonShape.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2PolygonShape.cpp; path = libs/Box2D/Collision/Shapes/b2PolygonShape.cpp; sourceTree = ""; }; + 4B8CC126135BFDF900B3E49F /* b2PolygonShape.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2PolygonShape.h; path = libs/Box2D/Collision/Shapes/b2PolygonShape.h; sourceTree = ""; }; + 4B8CC127135BFDF900B3E49F /* b2Shape.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2Shape.h; path = libs/Box2D/Collision/Shapes/b2Shape.h; sourceTree = ""; }; + 4B8CC128135BFDF900B3E49F /* b2BlockAllocator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2BlockAllocator.cpp; path = libs/Box2D/Common/b2BlockAllocator.cpp; sourceTree = ""; }; + 4B8CC12A135BFDF900B3E49F /* b2BlockAllocator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2BlockAllocator.h; path = libs/Box2D/Common/b2BlockAllocator.h; sourceTree = ""; }; + 4B8CC12B135BFDF900B3E49F /* b2Math.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2Math.cpp; path = libs/Box2D/Common/b2Math.cpp; sourceTree = ""; }; + 4B8CC12D135BFDF900B3E49F /* b2Math.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2Math.h; path = libs/Box2D/Common/b2Math.h; sourceTree = ""; }; + 4B8CC12E135BFDF900B3E49F /* b2Settings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2Settings.cpp; path = libs/Box2D/Common/b2Settings.cpp; sourceTree = ""; }; + 4B8CC130135BFDF900B3E49F /* b2Settings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2Settings.h; path = libs/Box2D/Common/b2Settings.h; sourceTree = ""; }; + 4B8CC131135BFDF900B3E49F /* b2StackAllocator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2StackAllocator.cpp; path = libs/Box2D/Common/b2StackAllocator.cpp; sourceTree = ""; }; + 4B8CC133135BFDF900B3E49F /* b2StackAllocator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2StackAllocator.h; path = libs/Box2D/Common/b2StackAllocator.h; sourceTree = ""; }; + 4B8CC134135BFDF900B3E49F /* b2Body.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2Body.cpp; path = libs/Box2D/Dynamics/b2Body.cpp; sourceTree = ""; }; + 4B8CC136135BFDF900B3E49F /* b2Body.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2Body.h; path = libs/Box2D/Dynamics/b2Body.h; sourceTree = ""; }; + 4B8CC137135BFDF900B3E49F /* b2ContactManager.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2ContactManager.cpp; path = libs/Box2D/Dynamics/b2ContactManager.cpp; sourceTree = ""; }; + 4B8CC139135BFDF900B3E49F /* b2ContactManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2ContactManager.h; path = libs/Box2D/Dynamics/b2ContactManager.h; sourceTree = ""; }; + 4B8CC13A135BFDF900B3E49F /* b2Fixture.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2Fixture.cpp; path = libs/Box2D/Dynamics/b2Fixture.cpp; sourceTree = ""; }; + 4B8CC13C135BFDF900B3E49F /* b2Fixture.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2Fixture.h; path = libs/Box2D/Dynamics/b2Fixture.h; sourceTree = ""; }; + 4B8CC13D135BFDF900B3E49F /* b2Island.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2Island.cpp; path = libs/Box2D/Dynamics/b2Island.cpp; sourceTree = ""; }; + 4B8CC13F135BFDF900B3E49F /* b2Island.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2Island.h; path = libs/Box2D/Dynamics/b2Island.h; sourceTree = ""; }; + 4B8CC140135BFDF900B3E49F /* b2TimeStep.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2TimeStep.h; path = libs/Box2D/Dynamics/b2TimeStep.h; sourceTree = ""; }; + 4B8CC141135BFDF900B3E49F /* b2World.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2World.cpp; path = libs/Box2D/Dynamics/b2World.cpp; sourceTree = ""; }; + 4B8CC143135BFDF900B3E49F /* b2World.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2World.h; path = libs/Box2D/Dynamics/b2World.h; sourceTree = ""; }; + 4B8CC144135BFDF900B3E49F /* b2WorldCallbacks.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2WorldCallbacks.cpp; path = libs/Box2D/Dynamics/b2WorldCallbacks.cpp; sourceTree = ""; }; + 4B8CC146135BFDF900B3E49F /* b2WorldCallbacks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2WorldCallbacks.h; path = libs/Box2D/Dynamics/b2WorldCallbacks.h; sourceTree = ""; }; + 4B8CC147135BFDF900B3E49F /* b2CircleContact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2CircleContact.cpp; path = libs/Box2D/Dynamics/Contacts/b2CircleContact.cpp; sourceTree = ""; }; + 4B8CC149135BFDF900B3E49F /* b2CircleContact.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2CircleContact.h; path = libs/Box2D/Dynamics/Contacts/b2CircleContact.h; sourceTree = ""; }; + 4B8CC14A135BFDF900B3E49F /* b2Contact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2Contact.cpp; path = libs/Box2D/Dynamics/Contacts/b2Contact.cpp; sourceTree = ""; }; + 4B8CC14C135BFDF900B3E49F /* b2Contact.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2Contact.h; path = libs/Box2D/Dynamics/Contacts/b2Contact.h; sourceTree = ""; }; + 4B8CC14D135BFDF900B3E49F /* b2ContactSolver.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2ContactSolver.cpp; path = libs/Box2D/Dynamics/Contacts/b2ContactSolver.cpp; sourceTree = ""; }; + 4B8CC14F135BFDF900B3E49F /* b2ContactSolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2ContactSolver.h; path = libs/Box2D/Dynamics/Contacts/b2ContactSolver.h; sourceTree = ""; }; + 4B8CC150135BFDF900B3E49F /* b2NullContact.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2NullContact.h; path = libs/Box2D/Dynamics/Contacts/b2NullContact.h; sourceTree = ""; }; + 4B8CC151135BFDF900B3E49F /* b2PolygonAndCircleContact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2PolygonAndCircleContact.cpp; path = libs/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.cpp; sourceTree = ""; }; + 4B8CC153135BFDF900B3E49F /* b2PolygonAndCircleContact.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2PolygonAndCircleContact.h; path = libs/Box2D/Dynamics/Contacts/b2PolygonAndCircleContact.h; sourceTree = ""; }; + 4B8CC154135BFDF900B3E49F /* b2PolygonContact.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2PolygonContact.cpp; path = libs/Box2D/Dynamics/Contacts/b2PolygonContact.cpp; sourceTree = ""; }; + 4B8CC156135BFDF900B3E49F /* b2PolygonContact.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2PolygonContact.h; path = libs/Box2D/Dynamics/Contacts/b2PolygonContact.h; sourceTree = ""; }; + 4B8CC157135BFDF900B3E49F /* b2TOISolver.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2TOISolver.cpp; path = libs/Box2D/Dynamics/Contacts/b2TOISolver.cpp; sourceTree = ""; }; + 4B8CC159135BFDF900B3E49F /* b2TOISolver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2TOISolver.h; path = libs/Box2D/Dynamics/Contacts/b2TOISolver.h; sourceTree = ""; }; + 4B8CC15A135BFDF900B3E49F /* b2DistanceJoint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2DistanceJoint.cpp; path = libs/Box2D/Dynamics/Joints/b2DistanceJoint.cpp; sourceTree = ""; }; + 4B8CC15C135BFDF900B3E49F /* b2DistanceJoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2DistanceJoint.h; path = libs/Box2D/Dynamics/Joints/b2DistanceJoint.h; sourceTree = ""; }; + 4B8CC15D135BFDF900B3E49F /* b2FrictionJoint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2FrictionJoint.cpp; path = libs/Box2D/Dynamics/Joints/b2FrictionJoint.cpp; sourceTree = ""; }; + 4B8CC15F135BFDF900B3E49F /* b2FrictionJoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2FrictionJoint.h; path = libs/Box2D/Dynamics/Joints/b2FrictionJoint.h; sourceTree = ""; }; + 4B8CC160135BFDF900B3E49F /* b2GearJoint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2GearJoint.cpp; path = libs/Box2D/Dynamics/Joints/b2GearJoint.cpp; sourceTree = ""; }; + 4B8CC162135BFDF900B3E49F /* b2GearJoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2GearJoint.h; path = libs/Box2D/Dynamics/Joints/b2GearJoint.h; sourceTree = ""; }; + 4B8CC163135BFDF900B3E49F /* b2Joint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2Joint.cpp; path = libs/Box2D/Dynamics/Joints/b2Joint.cpp; sourceTree = ""; }; + 4B8CC165135BFDF900B3E49F /* b2Joint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2Joint.h; path = libs/Box2D/Dynamics/Joints/b2Joint.h; sourceTree = ""; }; + 4B8CC166135BFDF900B3E49F /* b2LineJoint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2LineJoint.cpp; path = libs/Box2D/Dynamics/Joints/b2LineJoint.cpp; sourceTree = ""; }; + 4B8CC168135BFDF900B3E49F /* b2LineJoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2LineJoint.h; path = libs/Box2D/Dynamics/Joints/b2LineJoint.h; sourceTree = ""; }; + 4B8CC169135BFDF900B3E49F /* b2MouseJoint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2MouseJoint.cpp; path = libs/Box2D/Dynamics/Joints/b2MouseJoint.cpp; sourceTree = ""; }; + 4B8CC16B135BFDF900B3E49F /* b2MouseJoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2MouseJoint.h; path = libs/Box2D/Dynamics/Joints/b2MouseJoint.h; sourceTree = ""; }; + 4B8CC16C135BFDF900B3E49F /* b2PrismaticJoint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2PrismaticJoint.cpp; path = libs/Box2D/Dynamics/Joints/b2PrismaticJoint.cpp; sourceTree = ""; }; + 4B8CC16E135BFDF900B3E49F /* b2PrismaticJoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2PrismaticJoint.h; path = libs/Box2D/Dynamics/Joints/b2PrismaticJoint.h; sourceTree = ""; }; + 4B8CC16F135BFDF900B3E49F /* b2PulleyJoint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2PulleyJoint.cpp; path = libs/Box2D/Dynamics/Joints/b2PulleyJoint.cpp; sourceTree = ""; }; + 4B8CC171135BFDF900B3E49F /* b2PulleyJoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2PulleyJoint.h; path = libs/Box2D/Dynamics/Joints/b2PulleyJoint.h; sourceTree = ""; }; + 4B8CC172135BFDF900B3E49F /* b2RevoluteJoint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2RevoluteJoint.cpp; path = libs/Box2D/Dynamics/Joints/b2RevoluteJoint.cpp; sourceTree = ""; }; + 4B8CC174135BFDF900B3E49F /* b2RevoluteJoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2RevoluteJoint.h; path = libs/Box2D/Dynamics/Joints/b2RevoluteJoint.h; sourceTree = ""; }; + 4B8CC175135BFDF900B3E49F /* b2WeldJoint.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = b2WeldJoint.cpp; path = libs/Box2D/Dynamics/Joints/b2WeldJoint.cpp; sourceTree = ""; }; + 4B8CC177135BFDF900B3E49F /* b2WeldJoint.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = b2WeldJoint.h; path = libs/Box2D/Dynamics/Joints/b2WeldJoint.h; sourceTree = ""; }; + 4B8CC179135BFDF900B3E49F /* Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Prefix.pch; sourceTree = ""; }; + 4B8CC17A135BFDF900B3E49F /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; + 4B8CC17C135BFDF900B3E49F /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; + 4B8CC17D135BFDF900B3E49F /* AppDelegate.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = AppDelegate.mm; sourceTree = ""; }; + 4B8CC17F135BFDF900B3E49F /* RootViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RootViewController.h; sourceTree = ""; }; + 4B8CC180135BFDF900B3E49F /* RootViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RootViewController.m; sourceTree = ""; }; + 4B8CC182135BFDF900B3E49F /* HelloWorldLayer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HelloWorldLayer.h; sourceTree = ""; }; + 4B8CC183135BFDF900B3E49F /* HelloWorldLayer.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = HelloWorldLayer.mm; sourceTree = ""; }; + 4B8CC185135BFDF900B3E49F /* GLES-Render.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "GLES-Render.h"; sourceTree = ""; }; + 4B8CC186135BFDF900B3E49F /* GLES-Render.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = "GLES-Render.mm"; sourceTree = ""; }; + 4B8CC188135BFDF900B3E49F /* GameConfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GameConfig.h; sourceTree = ""; }; + 4B8CC189135BFDF900B3E49F /* blocks.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = blocks.png; path = Resources/blocks.png; sourceTree = ""; }; + 4B8CC193135BFEDE00B3E49F /* Assert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Assert.h; sourceTree = ""; }; + 4B8CC194135BFEDE00B3E49F /* Base.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Base.h; sourceTree = ""; }; + 4B8CC195135BFEDE00B3E49F /* GlobalDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GlobalDefines.h; sourceTree = ""; }; + 4B8CC196135BFEDE00B3E49F /* GlobalInclude.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GlobalInclude.h; sourceTree = ""; }; + 4B8CC197135BFEDE00B3E49F /* GlobalTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GlobalTypes.h; sourceTree = ""; }; + 4B8CC198135BFEDE00B3E49F /* Print.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Print.h; sourceTree = ""; }; + 4B8CC199135BFEDE00B3E49F /* Singleton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Singleton.h; sourceTree = ""; }; + 4B8CC19B135BFEDE00B3E49F /* BitEncoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BitEncoder.h; sourceTree = ""; }; + 4B8CC19C135BFEDE00B3E49F /* LocklessRingBuffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = LocklessRingBuffer.cpp; sourceTree = ""; }; + 4B8CC19D135BFEDE00B3E49F /* LocklessRingBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocklessRingBuffer.h; sourceTree = ""; }; + 4B8CC1A0135BFEDE00B3E49F /* BasicPrimitives.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicPrimitives.h; sourceTree = ""; }; + 4B8CC1A1135BFEDE00B3E49F /* BasicPrimitives.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = BasicPrimitives.mm; sourceTree = ""; }; + 4B8CC1A2135BFEDE00B3E49F /* OpenGLServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpenGLServices.h; sourceTree = ""; }; + 4B8CC1A3135BFEDE00B3E49F /* OpenGLServices.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = OpenGLServices.mm; sourceTree = ""; }; + 4B8CC1A4135BFEDE00B3E49F /* RenderTarget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RenderTarget.h; sourceTree = ""; }; + 4B8CC1A5135BFEDE00B3E49F /* RenderTarget.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RenderTarget.mm; sourceTree = ""; }; + 4B8CC1A7135BFEDE00B3E49F /* DJB2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DJB2.h; sourceTree = ""; }; + 4B8CC1A9135BFEDE00B3E49F /* MathDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MathDefines.h; sourceTree = ""; }; + 4B8CC1AA135BFEDE00B3E49F /* MathInclude.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MathInclude.h; sourceTree = ""; }; + 4B8CC1AB135BFEDE00B3E49F /* MathOperations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MathOperations.h; sourceTree = ""; }; + 4B8CC1AC135BFEDE00B3E49F /* MathTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MathTypes.h; sourceTree = ""; }; + 4B8CC1AD135BFEDE00B3E49F /* Matrix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Matrix.h; sourceTree = ""; }; + 4B8CC1AE135BFEDE00B3E49F /* Quaternion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Quaternion.h; sourceTree = ""; }; + 4B8CC1AF135BFEDE00B3E49F /* Vector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Vector.h; sourceTree = ""; }; + 4B8CC1B1135BFEDE00B3E49F /* MemoryBitset.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MemoryBitset.cpp; sourceTree = ""; }; + 4B8CC1B2135BFEDE00B3E49F /* MemoryBitset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryBitset.h; sourceTree = ""; }; + 4B8CC1B3135BFEDE00B3E49F /* MemoryHeap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MemoryHeap.cpp; sourceTree = ""; }; + 4B8CC1B4135BFEDE00B3E49F /* MemoryHeap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryHeap.h; sourceTree = ""; }; + 4B8CC1B5135BFEDE00B3E49F /* MemoryLinear.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemoryLinear.h; sourceTree = ""; }; + 4B8CC1B7135BFEDE00B3E49F /* GLView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GLView.h; sourceTree = ""; }; + 4B8CC1B8135BFEDE00B3E49F /* GLView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GLView.m; sourceTree = ""; }; + 4B8CC1B9135BFEDE00B3E49F /* LittlestAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LittlestAppDelegate.h; sourceTree = ""; }; + 4B8CC1BA135BFEDE00B3E49F /* LittlestAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LittlestAppDelegate.m; sourceTree = ""; }; + 4B8CC1BB135BFEDE00B3E49F /* LittlestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LittlestViewController.h; sourceTree = ""; }; + 4B8CC1BC135BFEDE00B3E49F /* LittlestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LittlestViewController.m; sourceTree = ""; }; + 4B8CC1BE135BFEDE00B3E49F /* Atomic32Bit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Atomic32Bit.h; sourceTree = ""; }; + 4B8CC1BF135BFEDE00B3E49F /* MemorySync.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemorySync.h; sourceTree = ""; }; + 4B8CC1C2135BFEDE00B3E49F /* Scene.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Scene.h; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 4B8CBFAD135BFDF600B3E49F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 4B8CBFB5135BFDF600B3E49F /* QuartzCore.framework in Frameworks */, + 4B8CBFB7135BFDF600B3E49F /* OpenGLES.framework in Frameworks */, + 4B8CBFB9135BFDF600B3E49F /* OpenAL.framework in Frameworks */, + 4B8CBFBB135BFDF600B3E49F /* AudioToolbox.framework in Frameworks */, + 4B8CBFBD135BFDF600B3E49F /* AVFoundation.framework in Frameworks */, + 4B8CBFBF135BFDF600B3E49F /* UIKit.framework in Frameworks */, + 4B8CBFC1135BFDF600B3E49F /* Foundation.framework in Frameworks */, + 4B8CBFC3135BFDF600B3E49F /* CoreGraphics.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 4B8CBFA5135BFDF600B3E49F = { + isa = PBXGroup; + children = ( + 4B8CBFC4135BFDF600B3E49F /* Littlest */, + 4B8CBFB3135BFDF600B3E49F /* Frameworks */, + 4B8CBFC5135BFDF600B3E49F /* Resources */, + 4B8CC178135BFDF900B3E49F /* Supporting Files */, + 4B8CBFB1135BFDF600B3E49F /* Products */, + ); + sourceTree = ""; + }; + 4B8CBFB1135BFDF600B3E49F /* Products */ = { + isa = PBXGroup; + children = ( + 4B8CBFB0135BFDF600B3E49F /* Littlest.app */, + ); + name = Products; + sourceTree = ""; + }; + 4B8CBFB3135BFDF600B3E49F /* Frameworks */ = { + isa = PBXGroup; + children = ( + 4B8CBFB4135BFDF600B3E49F /* QuartzCore.framework */, + 4B8CBFB6135BFDF600B3E49F /* OpenGLES.framework */, + 4B8CBFB8135BFDF600B3E49F /* OpenAL.framework */, + 4B8CBFBA135BFDF600B3E49F /* AudioToolbox.framework */, + 4B8CBFBC135BFDF600B3E49F /* AVFoundation.framework */, + 4B8CBFBE135BFDF600B3E49F /* UIKit.framework */, + 4B8CBFC0135BFDF600B3E49F /* Foundation.framework */, + 4B8CBFC2135BFDF600B3E49F /* CoreGraphics.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 4B8CBFC4135BFDF600B3E49F /* Littlest */ = { + isa = PBXGroup; + children = ( + 4B8CC191135BFEDE00B3E49F /* Foundation */, + 4B8CC1C0135BFEDE00B3E49F /* Game */, + 4B8CC190135BFE3B00B3E49F /* libs */, + 4B8CC17C135BFDF900B3E49F /* AppDelegate.h */, + 4B8CC17D135BFDF900B3E49F /* AppDelegate.mm */, + 4B8CC17F135BFDF900B3E49F /* RootViewController.h */, + 4B8CC180135BFDF900B3E49F /* RootViewController.m */, + 4B8CC182135BFDF900B3E49F /* HelloWorldLayer.h */, + 4B8CC183135BFDF900B3E49F /* HelloWorldLayer.mm */, + 4B8CC185135BFDF900B3E49F /* GLES-Render.h */, + 4B8CC186135BFDF900B3E49F /* GLES-Render.mm */, + 4B8CC188135BFDF900B3E49F /* GameConfig.h */, + ); + path = Littlest; + sourceTree = ""; + }; + 4B8CBFC5135BFDF600B3E49F /* Resources */ = { + isa = PBXGroup; + children = ( + 4B8CBFC6135BFDF600B3E49F /* Default.png */, + 4B8CBFC8135BFDF600B3E49F /* fps_images.png */, + 4B8CBFCA135BFDF600B3E49F /* Icon-72.png */, + 4B8CBFCC135BFDF600B3E49F /* Icon-Small-50.png */, + 4B8CBFCE135BFDF600B3E49F /* Icon-Small.png */, + 4B8CBFD0135BFDF600B3E49F /* Icon-Small@2x.png */, + 4B8CBFD2135BFDF600B3E49F /* Icon.png */, + 4B8CBFD4135BFDF600B3E49F /* Icon@2x.png */, + 4B8CBFD6135BFDF600B3E49F /* Info.plist */, + 4B8CBFD7135BFDF600B3E49F /* iTunesArtwork */, + 4B8CC189135BFDF900B3E49F /* blocks.png */, + ); + name = Resources; + path = Littlest; + sourceTree = ""; + }; + 4B8CBFD9135BFDF600B3E49F /* cocos2d */ = { + isa = PBXGroup; + children = ( + 4B8CBFDA135BFDF600B3E49F /* CCAction.h */, + 4B8CBFDB135BFDF600B3E49F /* CCAction.m */, + 4B8CBFDD135BFDF600B3E49F /* CCActionCamera.h */, + 4B8CBFDE135BFDF600B3E49F /* CCActionCamera.m */, + 4B8CBFE0135BFDF600B3E49F /* CCActionEase.h */, + 4B8CBFE1135BFDF600B3E49F /* CCActionEase.m */, + 4B8CBFE3135BFDF600B3E49F /* CCActionGrid.h */, + 4B8CBFE4135BFDF600B3E49F /* CCActionGrid.m */, + 4B8CBFE6135BFDF600B3E49F /* CCActionGrid3D.h */, + 4B8CBFE7135BFDF600B3E49F /* CCActionGrid3D.m */, + 4B8CBFE9135BFDF600B3E49F /* CCActionInstant.h */, + 4B8CBFEA135BFDF600B3E49F /* CCActionInstant.m */, + 4B8CBFEC135BFDF600B3E49F /* CCActionInterval.h */, + 4B8CBFED135BFDF600B3E49F /* CCActionInterval.m */, + 4B8CBFEF135BFDF600B3E49F /* CCActionManager.h */, + 4B8CBFF0135BFDF600B3E49F /* CCActionManager.m */, + 4B8CBFF2135BFDF600B3E49F /* CCActionPageTurn3D.h */, + 4B8CBFF3135BFDF600B3E49F /* CCActionPageTurn3D.m */, + 4B8CBFF5135BFDF600B3E49F /* CCActionProgressTimer.h */, + 4B8CBFF6135BFDF600B3E49F /* CCActionProgressTimer.m */, + 4B8CBFF8135BFDF600B3E49F /* CCActionTiledGrid.h */, + 4B8CBFF9135BFDF600B3E49F /* CCActionTiledGrid.m */, + 4B8CBFFB135BFDF600B3E49F /* CCActionTween.h */, + 4B8CBFFC135BFDF700B3E49F /* CCActionTween.m */, + 4B8CBFFE135BFDF700B3E49F /* CCAnimation.h */, + 4B8CBFFF135BFDF700B3E49F /* CCAnimation.m */, + 4B8CC001135BFDF700B3E49F /* CCAnimationCache.h */, + 4B8CC002135BFDF700B3E49F /* CCAnimationCache.m */, + 4B8CC004135BFDF700B3E49F /* CCAtlasNode.h */, + 4B8CC005135BFDF700B3E49F /* CCAtlasNode.m */, + 4B8CC007135BFDF700B3E49F /* CCBlockSupport.h */, + 4B8CC008135BFDF700B3E49F /* CCBlockSupport.m */, + 4B8CC00A135BFDF700B3E49F /* CCCamera.h */, + 4B8CC00B135BFDF700B3E49F /* CCCamera.m */, + 4B8CC00D135BFDF700B3E49F /* ccConfig.h */, + 4B8CC00E135BFDF700B3E49F /* CCConfiguration.h */, + 4B8CC00F135BFDF700B3E49F /* CCConfiguration.m */, + 4B8CC011135BFDF700B3E49F /* CCDirector.h */, + 4B8CC012135BFDF700B3E49F /* CCDirector.m */, + 4B8CC014135BFDF700B3E49F /* CCDrawingPrimitives.h */, + 4B8CC015135BFDF700B3E49F /* CCDrawingPrimitives.m */, + 4B8CC017135BFDF700B3E49F /* CCGrabber.h */, + 4B8CC018135BFDF700B3E49F /* CCGrabber.m */, + 4B8CC01A135BFDF700B3E49F /* CCGrid.h */, + 4B8CC01B135BFDF700B3E49F /* CCGrid.m */, + 4B8CC01D135BFDF700B3E49F /* CCLabelAtlas.h */, + 4B8CC01E135BFDF700B3E49F /* CCLabelAtlas.m */, + 4B8CC020135BFDF700B3E49F /* CCLabelBMFont.h */, + 4B8CC021135BFDF700B3E49F /* CCLabelBMFont.m */, + 4B8CC023135BFDF700B3E49F /* CCLabelTTF.h */, + 4B8CC024135BFDF700B3E49F /* CCLabelTTF.m */, + 4B8CC026135BFDF700B3E49F /* CCLayer.h */, + 4B8CC027135BFDF700B3E49F /* CCLayer.m */, + 4B8CC029135BFDF700B3E49F /* ccMacros.h */, + 4B8CC02A135BFDF700B3E49F /* CCMenu.h */, + 4B8CC02B135BFDF700B3E49F /* CCMenu.m */, + 4B8CC02D135BFDF700B3E49F /* CCMenuItem.h */, + 4B8CC02E135BFDF700B3E49F /* CCMenuItem.m */, + 4B8CC030135BFDF700B3E49F /* CCMotionStreak.h */, + 4B8CC031135BFDF700B3E49F /* CCMotionStreak.m */, + 4B8CC033135BFDF700B3E49F /* CCNode.h */, + 4B8CC034135BFDF700B3E49F /* CCNode.m */, + 4B8CC036135BFDF700B3E49F /* CCParallaxNode.h */, + 4B8CC037135BFDF700B3E49F /* CCParallaxNode.m */, + 4B8CC039135BFDF700B3E49F /* CCParticleExamples.h */, + 4B8CC03A135BFDF700B3E49F /* CCParticleExamples.m */, + 4B8CC03C135BFDF700B3E49F /* CCParticleSystem.h */, + 4B8CC03D135BFDF700B3E49F /* CCParticleSystem.m */, + 4B8CC03F135BFDF700B3E49F /* CCParticleSystemPoint.h */, + 4B8CC040135BFDF700B3E49F /* CCParticleSystemPoint.m */, + 4B8CC042135BFDF700B3E49F /* CCParticleSystemQuad.h */, + 4B8CC043135BFDF700B3E49F /* CCParticleSystemQuad.m */, + 4B8CC045135BFDF700B3E49F /* CCProgressTimer.h */, + 4B8CC046135BFDF700B3E49F /* CCProgressTimer.m */, + 4B8CC048135BFDF700B3E49F /* CCProtocols.h */, + 4B8CC049135BFDF700B3E49F /* CCRenderTexture.h */, + 4B8CC04A135BFDF700B3E49F /* CCRenderTexture.m */, + 4B8CC04C135BFDF700B3E49F /* CCRibbon.h */, + 4B8CC04D135BFDF700B3E49F /* CCRibbon.m */, + 4B8CC04F135BFDF700B3E49F /* CCScene.h */, + 4B8CC050135BFDF700B3E49F /* CCScene.m */, + 4B8CC052135BFDF700B3E49F /* CCScheduler.h */, + 4B8CC053135BFDF700B3E49F /* CCScheduler.m */, + 4B8CC055135BFDF700B3E49F /* CCSprite.h */, + 4B8CC056135BFDF700B3E49F /* CCSprite.m */, + 4B8CC058135BFDF700B3E49F /* CCSpriteBatchNode.h */, + 4B8CC059135BFDF700B3E49F /* CCSpriteBatchNode.m */, + 4B8CC05B135BFDF700B3E49F /* CCSpriteFrame.h */, + 4B8CC05C135BFDF700B3E49F /* CCSpriteFrame.m */, + 4B8CC05E135BFDF700B3E49F /* CCSpriteFrameCache.h */, + 4B8CC05F135BFDF700B3E49F /* CCSpriteFrameCache.m */, + 4B8CC061135BFDF700B3E49F /* CCTexture2D.h */, + 4B8CC062135BFDF700B3E49F /* CCTexture2D.m */, + 4B8CC064135BFDF700B3E49F /* CCTextureAtlas.h */, + 4B8CC065135BFDF700B3E49F /* CCTextureAtlas.m */, + 4B8CC067135BFDF700B3E49F /* CCTextureCache.h */, + 4B8CC068135BFDF700B3E49F /* CCTextureCache.m */, + 4B8CC06A135BFDF700B3E49F /* CCTexturePVR.h */, + 4B8CC06B135BFDF700B3E49F /* CCTexturePVR.m */, + 4B8CC06D135BFDF700B3E49F /* CCTileMapAtlas.h */, + 4B8CC06E135BFDF700B3E49F /* CCTileMapAtlas.m */, + 4B8CC070135BFDF700B3E49F /* CCTMXLayer.h */, + 4B8CC071135BFDF700B3E49F /* CCTMXLayer.m */, + 4B8CC073135BFDF700B3E49F /* CCTMXObjectGroup.h */, + 4B8CC074135BFDF700B3E49F /* CCTMXObjectGroup.m */, + 4B8CC076135BFDF700B3E49F /* CCTMXTiledMap.h */, + 4B8CC077135BFDF700B3E49F /* CCTMXTiledMap.m */, + 4B8CC079135BFDF700B3E49F /* CCTMXXMLParser.h */, + 4B8CC07A135BFDF700B3E49F /* CCTMXXMLParser.m */, + 4B8CC07C135BFDF700B3E49F /* CCTransition.h */, + 4B8CC07D135BFDF700B3E49F /* CCTransition.m */, + 4B8CC07F135BFDF700B3E49F /* CCTransitionPageTurn.h */, + 4B8CC080135BFDF700B3E49F /* CCTransitionPageTurn.m */, + 4B8CC082135BFDF700B3E49F /* CCTransitionRadial.h */, + 4B8CC083135BFDF700B3E49F /* CCTransitionRadial.m */, + 4B8CC085135BFDF800B3E49F /* ccTypes.h */, + 4B8CC086135BFDF800B3E49F /* cocos2d.h */, + 4B8CC087135BFDF800B3E49F /* cocos2d.m */, + 4B8CC089135BFDF800B3E49F /* CCGL.h */, + 4B8CC08A135BFDF800B3E49F /* CCNS.h */, + 4B8CC08B135BFDF800B3E49F /* CCDirectorIOS.h */, + 4B8CC08C135BFDF800B3E49F /* CCDirectorIOS.m */, + 4B8CC08E135BFDF800B3E49F /* CCTouchDelegateProtocol.h */, + 4B8CC08F135BFDF800B3E49F /* CCTouchDispatcher.h */, + 4B8CC090135BFDF800B3E49F /* CCTouchDispatcher.m */, + 4B8CC092135BFDF800B3E49F /* CCTouchHandler.h */, + 4B8CC093135BFDF800B3E49F /* CCTouchHandler.m */, + 4B8CC095135BFDF800B3E49F /* EAGLView.h */, + 4B8CC096135BFDF800B3E49F /* EAGLView.m */, + 4B8CC098135BFDF800B3E49F /* ES1Renderer.h */, + 4B8CC099135BFDF800B3E49F /* ES1Renderer.m */, + 4B8CC09B135BFDF800B3E49F /* ESRenderer.h */, + 4B8CC09C135BFDF800B3E49F /* glu.c */, + 4B8CC09E135BFDF800B3E49F /* glu.h */, + 4B8CC09F135BFDF800B3E49F /* CCDirectorMac.h */, + 4B8CC0A0135BFDF800B3E49F /* CCDirectorMac.m */, + 4B8CC0A2135BFDF800B3E49F /* CCEventDispatcher.h */, + 4B8CC0A3135BFDF800B3E49F /* CCEventDispatcher.m */, + 4B8CC0A5135BFDF800B3E49F /* MacGLView.h */, + 4B8CC0A6135BFDF800B3E49F /* MacGLView.m */, + 4B8CC0A8135BFDF800B3E49F /* MacWindow.h */, + 4B8CC0A9135BFDF800B3E49F /* MacWindow.m */, + 4B8CC0AB135BFDF800B3E49F /* base64.c */, + 4B8CC0AD135BFDF800B3E49F /* base64.h */, + 4B8CC0AE135BFDF800B3E49F /* CCArray.h */, + 4B8CC0AF135BFDF800B3E49F /* CCArray.m */, + 4B8CC0B1135BFDF800B3E49F /* ccCArray.h */, + 4B8CC0B2135BFDF800B3E49F /* CCFileUtils.h */, + 4B8CC0B3135BFDF800B3E49F /* CCFileUtils.m */, + 4B8CC0B5135BFDF800B3E49F /* CCProfiling.h */, + 4B8CC0B6135BFDF800B3E49F /* CCProfiling.m */, + 4B8CC0B8135BFDF800B3E49F /* ccUtils.c */, + 4B8CC0BA135BFDF800B3E49F /* ccUtils.h */, + 4B8CC0BB135BFDF800B3E49F /* CGPointExtension.h */, + 4B8CC0BC135BFDF800B3E49F /* CGPointExtension.m */, + 4B8CC0BE135BFDF800B3E49F /* OpenGL_Internal.h */, + 4B8CC0BF135BFDF800B3E49F /* TGAlib.h */, + 4B8CC0C0135BFDF800B3E49F /* TGAlib.m */, + 4B8CC0C2135BFDF800B3E49F /* TransformUtils.h */, + 4B8CC0C3135BFDF800B3E49F /* TransformUtils.m */, + 4B8CC0C5135BFDF800B3E49F /* uthash.h */, + 4B8CC0C6135BFDF800B3E49F /* utlist.h */, + 4B8CC0C7135BFDF800B3E49F /* ZipUtils.h */, + 4B8CC0C8135BFDF800B3E49F /* ZipUtils.m */, + ); + name = cocos2d; + sourceTree = ""; + }; + 4B8CC0CA135BFDF800B3E49F /* CocosDenshion */ = { + isa = PBXGroup; + children = ( + 4B8CC0CB135BFDF800B3E49F /* CDAudioManager.h */, + 4B8CC0CC135BFDF800B3E49F /* CDAudioManager.m */, + 4B8CC0CE135BFDF800B3E49F /* CDConfig.h */, + 4B8CC0CF135BFDF800B3E49F /* CDOpenALSupport.h */, + 4B8CC0D0135BFDF800B3E49F /* CDOpenALSupport.m */, + 4B8CC0D2135BFDF800B3E49F /* CocosDenshion.h */, + 4B8CC0D3135BFDF800B3E49F /* CocosDenshion.m */, + 4B8CC0D5135BFDF800B3E49F /* SimpleAudioEngine.h */, + 4B8CC0D6135BFDF800B3E49F /* SimpleAudioEngine.m */, + ); + name = CocosDenshion; + sourceTree = ""; + }; + 4B8CC0D8135BFDF800B3E49F /* cocoslive */ = { + isa = PBXGroup; + children = ( + 4B8CC0D9135BFDF800B3E49F /* CLScoreServerPost.h */, + 4B8CC0DA135BFDF800B3E49F /* CLScoreServerPost.m */, + 4B8CC0DC135BFDF800B3E49F /* CLScoreServerRequest.h */, + 4B8CC0DD135BFDF800B3E49F /* CLScoreServerRequest.m */, + 4B8CC0DF135BFDF800B3E49F /* cocoslive.h */, + 4B8CC0E0135BFDF800B3E49F /* cocoslive.m */, + ); + name = cocoslive; + sourceTree = ""; + }; + 4B8CC0E2135BFDF800B3E49F /* FontLabel */ = { + isa = PBXGroup; + children = ( + 4B8CC0E3135BFDF800B3E49F /* FontLabel.h */, + 4B8CC0E4135BFDF800B3E49F /* FontLabel.m */, + 4B8CC0E6135BFDF800B3E49F /* FontLabelStringDrawing.h */, + 4B8CC0E7135BFDF800B3E49F /* FontLabelStringDrawing.m */, + 4B8CC0E9135BFDF800B3E49F /* FontManager.h */, + 4B8CC0EA135BFDF800B3E49F /* FontManager.m */, + 4B8CC0EC135BFDF800B3E49F /* ZAttributedString.h */, + 4B8CC0ED135BFDF800B3E49F /* ZAttributedString.m */, + 4B8CC0EF135BFDF800B3E49F /* ZAttributedStringPrivate.h */, + 4B8CC0F0135BFDF800B3E49F /* ZFont.h */, + 4B8CC0F1135BFDF800B3E49F /* ZFont.m */, + ); + name = FontLabel; + sourceTree = ""; + }; + 4B8CC0F3135BFDF800B3E49F /* TouchJSON */ = { + isa = PBXGroup; + children = ( + 4B8CC0F4135BFDF800B3E49F /* CDataScanner.h */, + 4B8CC0F5135BFDF800B3E49F /* CDataScanner.m */, + 4B8CC0F7135BFDF800B3E49F /* CDataScanner_Extensions.h */, + 4B8CC0F8135BFDF800B3E49F /* CDataScanner_Extensions.m */, + 4B8CC0FA135BFDF800B3E49F /* NSCharacterSet_Extensions.h */, + 4B8CC0FB135BFDF800B3E49F /* NSCharacterSet_Extensions.m */, + 4B8CC0FD135BFDF800B3E49F /* NSDictionary_JSONExtensions.h */, + 4B8CC0FE135BFDF800B3E49F /* NSDictionary_JSONExtensions.m */, + 4B8CC100135BFDF800B3E49F /* NSScanner_Extensions.h */, + 4B8CC101135BFDF800B3E49F /* NSScanner_Extensions.m */, + 4B8CC103135BFDF800B3E49F /* CJSONDeserializer.h */, + 4B8CC104135BFDF800B3E49F /* CJSONDeserializer.m */, + 4B8CC106135BFDF800B3E49F /* CJSONScanner.h */, + 4B8CC107135BFDF800B3E49F /* CJSONScanner.m */, + 4B8CC109135BFDF800B3E49F /* CJSONSerializer.h */, + 4B8CC10A135BFDF800B3E49F /* CJSONSerializer.m */, + ); + name = TouchJSON; + sourceTree = ""; + }; + 4B8CC10C135BFDF800B3E49F /* Box2D */ = { + isa = PBXGroup; + children = ( + 4B8CC10D135BFDF800B3E49F /* Box2D.h */, + 4B8CC10E135BFDF800B3E49F /* b2BroadPhase.cpp */, + 4B8CC110135BFDF800B3E49F /* b2BroadPhase.h */, + 4B8CC111135BFDF800B3E49F /* b2CollideCircle.cpp */, + 4B8CC113135BFDF900B3E49F /* b2CollidePolygon.cpp */, + 4B8CC115135BFDF900B3E49F /* b2Collision.cpp */, + 4B8CC117135BFDF900B3E49F /* b2Collision.h */, + 4B8CC118135BFDF900B3E49F /* b2Distance.cpp */, + 4B8CC11A135BFDF900B3E49F /* b2Distance.h */, + 4B8CC11B135BFDF900B3E49F /* b2DynamicTree.cpp */, + 4B8CC11D135BFDF900B3E49F /* b2DynamicTree.h */, + 4B8CC11E135BFDF900B3E49F /* b2TimeOfImpact.cpp */, + 4B8CC120135BFDF900B3E49F /* b2TimeOfImpact.h */, + 4B8CC121135BFDF900B3E49F /* b2CircleShape.cpp */, + 4B8CC123135BFDF900B3E49F /* b2CircleShape.h */, + 4B8CC124135BFDF900B3E49F /* b2PolygonShape.cpp */, + 4B8CC126135BFDF900B3E49F /* b2PolygonShape.h */, + 4B8CC127135BFDF900B3E49F /* b2Shape.h */, + 4B8CC128135BFDF900B3E49F /* b2BlockAllocator.cpp */, + 4B8CC12A135BFDF900B3E49F /* b2BlockAllocator.h */, + 4B8CC12B135BFDF900B3E49F /* b2Math.cpp */, + 4B8CC12D135BFDF900B3E49F /* b2Math.h */, + 4B8CC12E135BFDF900B3E49F /* b2Settings.cpp */, + 4B8CC130135BFDF900B3E49F /* b2Settings.h */, + 4B8CC131135BFDF900B3E49F /* b2StackAllocator.cpp */, + 4B8CC133135BFDF900B3E49F /* b2StackAllocator.h */, + 4B8CC134135BFDF900B3E49F /* b2Body.cpp */, + 4B8CC136135BFDF900B3E49F /* b2Body.h */, + 4B8CC137135BFDF900B3E49F /* b2ContactManager.cpp */, + 4B8CC139135BFDF900B3E49F /* b2ContactManager.h */, + 4B8CC13A135BFDF900B3E49F /* b2Fixture.cpp */, + 4B8CC13C135BFDF900B3E49F /* b2Fixture.h */, + 4B8CC13D135BFDF900B3E49F /* b2Island.cpp */, + 4B8CC13F135BFDF900B3E49F /* b2Island.h */, + 4B8CC140135BFDF900B3E49F /* b2TimeStep.h */, + 4B8CC141135BFDF900B3E49F /* b2World.cpp */, + 4B8CC143135BFDF900B3E49F /* b2World.h */, + 4B8CC144135BFDF900B3E49F /* b2WorldCallbacks.cpp */, + 4B8CC146135BFDF900B3E49F /* b2WorldCallbacks.h */, + 4B8CC147135BFDF900B3E49F /* b2CircleContact.cpp */, + 4B8CC149135BFDF900B3E49F /* b2CircleContact.h */, + 4B8CC14A135BFDF900B3E49F /* b2Contact.cpp */, + 4B8CC14C135BFDF900B3E49F /* b2Contact.h */, + 4B8CC14D135BFDF900B3E49F /* b2ContactSolver.cpp */, + 4B8CC14F135BFDF900B3E49F /* b2ContactSolver.h */, + 4B8CC150135BFDF900B3E49F /* b2NullContact.h */, + 4B8CC151135BFDF900B3E49F /* b2PolygonAndCircleContact.cpp */, + 4B8CC153135BFDF900B3E49F /* b2PolygonAndCircleContact.h */, + 4B8CC154135BFDF900B3E49F /* b2PolygonContact.cpp */, + 4B8CC156135BFDF900B3E49F /* b2PolygonContact.h */, + 4B8CC157135BFDF900B3E49F /* b2TOISolver.cpp */, + 4B8CC159135BFDF900B3E49F /* b2TOISolver.h */, + 4B8CC15A135BFDF900B3E49F /* b2DistanceJoint.cpp */, + 4B8CC15C135BFDF900B3E49F /* b2DistanceJoint.h */, + 4B8CC15D135BFDF900B3E49F /* b2FrictionJoint.cpp */, + 4B8CC15F135BFDF900B3E49F /* b2FrictionJoint.h */, + 4B8CC160135BFDF900B3E49F /* b2GearJoint.cpp */, + 4B8CC162135BFDF900B3E49F /* b2GearJoint.h */, + 4B8CC163135BFDF900B3E49F /* b2Joint.cpp */, + 4B8CC165135BFDF900B3E49F /* b2Joint.h */, + 4B8CC166135BFDF900B3E49F /* b2LineJoint.cpp */, + 4B8CC168135BFDF900B3E49F /* b2LineJoint.h */, + 4B8CC169135BFDF900B3E49F /* b2MouseJoint.cpp */, + 4B8CC16B135BFDF900B3E49F /* b2MouseJoint.h */, + 4B8CC16C135BFDF900B3E49F /* b2PrismaticJoint.cpp */, + 4B8CC16E135BFDF900B3E49F /* b2PrismaticJoint.h */, + 4B8CC16F135BFDF900B3E49F /* b2PulleyJoint.cpp */, + 4B8CC171135BFDF900B3E49F /* b2PulleyJoint.h */, + 4B8CC172135BFDF900B3E49F /* b2RevoluteJoint.cpp */, + 4B8CC174135BFDF900B3E49F /* b2RevoluteJoint.h */, + 4B8CC175135BFDF900B3E49F /* b2WeldJoint.cpp */, + 4B8CC177135BFDF900B3E49F /* b2WeldJoint.h */, + ); + name = Box2D; + sourceTree = ""; + }; + 4B8CC178135BFDF900B3E49F /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 4B8CC179135BFDF900B3E49F /* Prefix.pch */, + 4B8CC17A135BFDF900B3E49F /* main.m */, + ); + name = "Supporting Files"; + path = Littlest; + sourceTree = ""; + }; + 4B8CC190135BFE3B00B3E49F /* libs */ = { + isa = PBXGroup; + children = ( + 4B8CC10C135BFDF800B3E49F /* Box2D */, + 4B8CBFD9135BFDF600B3E49F /* cocos2d */, + 4B8CC0CA135BFDF800B3E49F /* CocosDenshion */, + 4B8CC0D8135BFDF800B3E49F /* cocoslive */, + 4B8CC0E2135BFDF800B3E49F /* FontLabel */, + 4B8CC0F3135BFDF800B3E49F /* TouchJSON */, + ); + name = libs; + sourceTree = ""; + }; + 4B8CC191135BFEDE00B3E49F /* Foundation */ = { + isa = PBXGroup; + children = ( + 4B8CC192135BFEDE00B3E49F /* Common */, + 4B8CC19A135BFEDE00B3E49F /* Containers */, + 4B8CC19E135BFEDE00B3E49F /* GraphicsServices */, + 4B8CC1A6135BFEDE00B3E49F /* Hash */, + 4B8CC1A8135BFEDE00B3E49F /* Math */, + 4B8CC1B0135BFEDE00B3E49F /* Memory */, + 4B8CC1B6135BFEDE00B3E49F /* OSInterface */, + 4B8CC1BD135BFEDE00B3E49F /* Synchronization */, + ); + path = Foundation; + sourceTree = ""; + }; + 4B8CC192135BFEDE00B3E49F /* Common */ = { + isa = PBXGroup; + children = ( + 4B8CC193135BFEDE00B3E49F /* Assert.h */, + 4B8CC194135BFEDE00B3E49F /* Base.h */, + 4B8CC195135BFEDE00B3E49F /* GlobalDefines.h */, + 4B8CC196135BFEDE00B3E49F /* GlobalInclude.h */, + 4B8CC197135BFEDE00B3E49F /* GlobalTypes.h */, + 4B8CC198135BFEDE00B3E49F /* Print.h */, + 4B8CC199135BFEDE00B3E49F /* Singleton.h */, + ); + path = Common; + sourceTree = ""; + }; + 4B8CC19A135BFEDE00B3E49F /* Containers */ = { + isa = PBXGroup; + children = ( + 4B8CC19B135BFEDE00B3E49F /* BitEncoder.h */, + 4B8CC19C135BFEDE00B3E49F /* LocklessRingBuffer.cpp */, + 4B8CC19D135BFEDE00B3E49F /* LocklessRingBuffer.h */, + ); + path = Containers; + sourceTree = ""; + }; + 4B8CC19E135BFEDE00B3E49F /* GraphicsServices */ = { + isa = PBXGroup; + children = ( + 4B8CC19F135BFEDE00B3E49F /* Geometry */, + 4B8CC1A2135BFEDE00B3E49F /* OpenGLServices.h */, + 4B8CC1A3135BFEDE00B3E49F /* OpenGLServices.mm */, + 4B8CC1A4135BFEDE00B3E49F /* RenderTarget.h */, + 4B8CC1A5135BFEDE00B3E49F /* RenderTarget.mm */, + ); + path = GraphicsServices; + sourceTree = ""; + }; + 4B8CC19F135BFEDE00B3E49F /* Geometry */ = { + isa = PBXGroup; + children = ( + 4B8CC1A0135BFEDE00B3E49F /* BasicPrimitives.h */, + 4B8CC1A1135BFEDE00B3E49F /* BasicPrimitives.mm */, + ); + path = Geometry; + sourceTree = ""; + }; + 4B8CC1A6135BFEDE00B3E49F /* Hash */ = { + isa = PBXGroup; + children = ( + 4B8CC1A7135BFEDE00B3E49F /* DJB2.h */, + ); + path = Hash; + sourceTree = ""; + }; + 4B8CC1A8135BFEDE00B3E49F /* Math */ = { + isa = PBXGroup; + children = ( + 4B8CC1A9135BFEDE00B3E49F /* MathDefines.h */, + 4B8CC1AA135BFEDE00B3E49F /* MathInclude.h */, + 4B8CC1AB135BFEDE00B3E49F /* MathOperations.h */, + 4B8CC1AC135BFEDE00B3E49F /* MathTypes.h */, + 4B8CC1AD135BFEDE00B3E49F /* Matrix.h */, + 4B8CC1AE135BFEDE00B3E49F /* Quaternion.h */, + 4B8CC1AF135BFEDE00B3E49F /* Vector.h */, + ); + path = Math; + sourceTree = ""; + }; + 4B8CC1B0135BFEDE00B3E49F /* Memory */ = { + isa = PBXGroup; + children = ( + 4B8CC1B1135BFEDE00B3E49F /* MemoryBitset.cpp */, + 4B8CC1B2135BFEDE00B3E49F /* MemoryBitset.h */, + 4B8CC1B3135BFEDE00B3E49F /* MemoryHeap.cpp */, + 4B8CC1B4135BFEDE00B3E49F /* MemoryHeap.h */, + 4B8CC1B5135BFEDE00B3E49F /* MemoryLinear.h */, + ); + path = Memory; + sourceTree = ""; + }; + 4B8CC1B6135BFEDE00B3E49F /* OSInterface */ = { + isa = PBXGroup; + children = ( + 4B8CC1B7135BFEDE00B3E49F /* GLView.h */, + 4B8CC1B8135BFEDE00B3E49F /* GLView.m */, + 4B8CC1B9135BFEDE00B3E49F /* LittlestAppDelegate.h */, + 4B8CC1BA135BFEDE00B3E49F /* LittlestAppDelegate.m */, + 4B8CC1BB135BFEDE00B3E49F /* LittlestViewController.h */, + 4B8CC1BC135BFEDE00B3E49F /* LittlestViewController.m */, + ); + path = OSInterface; + sourceTree = ""; + }; + 4B8CC1BD135BFEDE00B3E49F /* Synchronization */ = { + isa = PBXGroup; + children = ( + 4B8CC1BE135BFEDE00B3E49F /* Atomic32Bit.h */, + 4B8CC1BF135BFEDE00B3E49F /* MemorySync.h */, + ); + path = Synchronization; + sourceTree = ""; + }; + 4B8CC1C0135BFEDE00B3E49F /* Game */ = { + isa = PBXGroup; + children = ( + 4B8CC1C1135BFEDE00B3E49F /* Scene */, + ); + path = Game; + sourceTree = ""; + }; + 4B8CC1C1135BFEDE00B3E49F /* Scene */ = { + isa = PBXGroup; + children = ( + 4B8CC1C2135BFEDE00B3E49F /* Scene.h */, + ); + path = Scene; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 4B8CBFAF135BFDF600B3E49F /* Littlest */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4B8CC18D135BFDF900B3E49F /* Build configuration list for PBXNativeTarget "Littlest" */; + buildPhases = ( + 4B8CBFAC135BFDF600B3E49F /* Sources */, + 4B8CBFAD135BFDF600B3E49F /* Frameworks */, + 4B8CBFAE135BFDF600B3E49F /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Littlest; + productName = Littlest; + productReference = 4B8CBFB0135BFDF600B3E49F /* Littlest.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 4B8CBFA7135BFDF600B3E49F /* Project object */ = { + isa = PBXProject; + buildConfigurationList = 4B8CBFAA135BFDF600B3E49F /* Build configuration list for PBXProject "Littlest" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 4B8CBFA5135BFDF600B3E49F; + productRefGroup = 4B8CBFB1135BFDF600B3E49F /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 4B8CBFAF135BFDF600B3E49F /* Littlest */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 4B8CBFAE135BFDF600B3E49F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4B8CBFC7135BFDF600B3E49F /* Default.png in Resources */, + 4B8CBFC9135BFDF600B3E49F /* fps_images.png in Resources */, + 4B8CBFCB135BFDF600B3E49F /* Icon-72.png in Resources */, + 4B8CBFCD135BFDF600B3E49F /* Icon-Small-50.png in Resources */, + 4B8CBFCF135BFDF600B3E49F /* Icon-Small.png in Resources */, + 4B8CBFD1135BFDF600B3E49F /* Icon-Small@2x.png in Resources */, + 4B8CBFD3135BFDF600B3E49F /* Icon.png in Resources */, + 4B8CBFD5135BFDF600B3E49F /* Icon@2x.png in Resources */, + 4B8CBFD8135BFDF600B3E49F /* iTunesArtwork in Resources */, + 4B8CC18A135BFDF900B3E49F /* blocks.png in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 4B8CBFAC135BFDF600B3E49F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4B8CBFDC135BFDF600B3E49F /* CCAction.m in Sources */, + 4B8CBFDF135BFDF600B3E49F /* CCActionCamera.m in Sources */, + 4B8CBFE2135BFDF600B3E49F /* CCActionEase.m in Sources */, + 4B8CBFE5135BFDF600B3E49F /* CCActionGrid.m in Sources */, + 4B8CBFE8135BFDF600B3E49F /* CCActionGrid3D.m in Sources */, + 4B8CBFEB135BFDF600B3E49F /* CCActionInstant.m in Sources */, + 4B8CBFEE135BFDF600B3E49F /* CCActionInterval.m in Sources */, + 4B8CBFF1135BFDF600B3E49F /* CCActionManager.m in Sources */, + 4B8CBFF4135BFDF600B3E49F /* CCActionPageTurn3D.m in Sources */, + 4B8CBFF7135BFDF600B3E49F /* CCActionProgressTimer.m in Sources */, + 4B8CBFFA135BFDF600B3E49F /* CCActionTiledGrid.m in Sources */, + 4B8CBFFD135BFDF700B3E49F /* CCActionTween.m in Sources */, + 4B8CC000135BFDF700B3E49F /* CCAnimation.m in Sources */, + 4B8CC003135BFDF700B3E49F /* CCAnimationCache.m in Sources */, + 4B8CC006135BFDF700B3E49F /* CCAtlasNode.m in Sources */, + 4B8CC009135BFDF700B3E49F /* CCBlockSupport.m in Sources */, + 4B8CC00C135BFDF700B3E49F /* CCCamera.m in Sources */, + 4B8CC010135BFDF700B3E49F /* CCConfiguration.m in Sources */, + 4B8CC013135BFDF700B3E49F /* CCDirector.m in Sources */, + 4B8CC016135BFDF700B3E49F /* CCDrawingPrimitives.m in Sources */, + 4B8CC019135BFDF700B3E49F /* CCGrabber.m in Sources */, + 4B8CC01C135BFDF700B3E49F /* CCGrid.m in Sources */, + 4B8CC01F135BFDF700B3E49F /* CCLabelAtlas.m in Sources */, + 4B8CC022135BFDF700B3E49F /* CCLabelBMFont.m in Sources */, + 4B8CC025135BFDF700B3E49F /* CCLabelTTF.m in Sources */, + 4B8CC028135BFDF700B3E49F /* CCLayer.m in Sources */, + 4B8CC02C135BFDF700B3E49F /* CCMenu.m in Sources */, + 4B8CC02F135BFDF700B3E49F /* CCMenuItem.m in Sources */, + 4B8CC032135BFDF700B3E49F /* CCMotionStreak.m in Sources */, + 4B8CC035135BFDF700B3E49F /* CCNode.m in Sources */, + 4B8CC038135BFDF700B3E49F /* CCParallaxNode.m in Sources */, + 4B8CC03B135BFDF700B3E49F /* CCParticleExamples.m in Sources */, + 4B8CC03E135BFDF700B3E49F /* CCParticleSystem.m in Sources */, + 4B8CC041135BFDF700B3E49F /* CCParticleSystemPoint.m in Sources */, + 4B8CC044135BFDF700B3E49F /* CCParticleSystemQuad.m in Sources */, + 4B8CC047135BFDF700B3E49F /* CCProgressTimer.m in Sources */, + 4B8CC04B135BFDF700B3E49F /* CCRenderTexture.m in Sources */, + 4B8CC04E135BFDF700B3E49F /* CCRibbon.m in Sources */, + 4B8CC051135BFDF700B3E49F /* CCScene.m in Sources */, + 4B8CC054135BFDF700B3E49F /* CCScheduler.m in Sources */, + 4B8CC057135BFDF700B3E49F /* CCSprite.m in Sources */, + 4B8CC05A135BFDF700B3E49F /* CCSpriteBatchNode.m in Sources */, + 4B8CC05D135BFDF700B3E49F /* CCSpriteFrame.m in Sources */, + 4B8CC060135BFDF700B3E49F /* CCSpriteFrameCache.m in Sources */, + 4B8CC063135BFDF700B3E49F /* CCTexture2D.m in Sources */, + 4B8CC066135BFDF700B3E49F /* CCTextureAtlas.m in Sources */, + 4B8CC069135BFDF700B3E49F /* CCTextureCache.m in Sources */, + 4B8CC06C135BFDF700B3E49F /* CCTexturePVR.m in Sources */, + 4B8CC06F135BFDF700B3E49F /* CCTileMapAtlas.m in Sources */, + 4B8CC072135BFDF700B3E49F /* CCTMXLayer.m in Sources */, + 4B8CC075135BFDF700B3E49F /* CCTMXObjectGroup.m in Sources */, + 4B8CC078135BFDF700B3E49F /* CCTMXTiledMap.m in Sources */, + 4B8CC07B135BFDF700B3E49F /* CCTMXXMLParser.m in Sources */, + 4B8CC07E135BFDF700B3E49F /* CCTransition.m in Sources */, + 4B8CC081135BFDF700B3E49F /* CCTransitionPageTurn.m in Sources */, + 4B8CC084135BFDF800B3E49F /* CCTransitionRadial.m in Sources */, + 4B8CC088135BFDF800B3E49F /* cocos2d.m in Sources */, + 4B8CC08D135BFDF800B3E49F /* CCDirectorIOS.m in Sources */, + 4B8CC091135BFDF800B3E49F /* CCTouchDispatcher.m in Sources */, + 4B8CC094135BFDF800B3E49F /* CCTouchHandler.m in Sources */, + 4B8CC097135BFDF800B3E49F /* EAGLView.m in Sources */, + 4B8CC09A135BFDF800B3E49F /* ES1Renderer.m in Sources */, + 4B8CC09D135BFDF800B3E49F /* glu.c in Sources */, + 4B8CC0A1135BFDF800B3E49F /* CCDirectorMac.m in Sources */, + 4B8CC0A4135BFDF800B3E49F /* CCEventDispatcher.m in Sources */, + 4B8CC0A7135BFDF800B3E49F /* MacGLView.m in Sources */, + 4B8CC0AA135BFDF800B3E49F /* MacWindow.m in Sources */, + 4B8CC0AC135BFDF800B3E49F /* base64.c in Sources */, + 4B8CC0B0135BFDF800B3E49F /* CCArray.m in Sources */, + 4B8CC0B4135BFDF800B3E49F /* CCFileUtils.m in Sources */, + 4B8CC0B7135BFDF800B3E49F /* CCProfiling.m in Sources */, + 4B8CC0B9135BFDF800B3E49F /* ccUtils.c in Sources */, + 4B8CC0BD135BFDF800B3E49F /* CGPointExtension.m in Sources */, + 4B8CC0C1135BFDF800B3E49F /* TGAlib.m in Sources */, + 4B8CC0C4135BFDF800B3E49F /* TransformUtils.m in Sources */, + 4B8CC0C9135BFDF800B3E49F /* ZipUtils.m in Sources */, + 4B8CC0CD135BFDF800B3E49F /* CDAudioManager.m in Sources */, + 4B8CC0D1135BFDF800B3E49F /* CDOpenALSupport.m in Sources */, + 4B8CC0D4135BFDF800B3E49F /* CocosDenshion.m in Sources */, + 4B8CC0D7135BFDF800B3E49F /* SimpleAudioEngine.m in Sources */, + 4B8CC0DB135BFDF800B3E49F /* CLScoreServerPost.m in Sources */, + 4B8CC0DE135BFDF800B3E49F /* CLScoreServerRequest.m in Sources */, + 4B8CC0E1135BFDF800B3E49F /* cocoslive.m in Sources */, + 4B8CC0E5135BFDF800B3E49F /* FontLabel.m in Sources */, + 4B8CC0E8135BFDF800B3E49F /* FontLabelStringDrawing.m in Sources */, + 4B8CC0EB135BFDF800B3E49F /* FontManager.m in Sources */, + 4B8CC0EE135BFDF800B3E49F /* ZAttributedString.m in Sources */, + 4B8CC0F2135BFDF800B3E49F /* ZFont.m in Sources */, + 4B8CC0F6135BFDF800B3E49F /* CDataScanner.m in Sources */, + 4B8CC0F9135BFDF800B3E49F /* CDataScanner_Extensions.m in Sources */, + 4B8CC0FC135BFDF800B3E49F /* NSCharacterSet_Extensions.m in Sources */, + 4B8CC0FF135BFDF800B3E49F /* NSDictionary_JSONExtensions.m in Sources */, + 4B8CC102135BFDF800B3E49F /* NSScanner_Extensions.m in Sources */, + 4B8CC105135BFDF800B3E49F /* CJSONDeserializer.m in Sources */, + 4B8CC108135BFDF800B3E49F /* CJSONScanner.m in Sources */, + 4B8CC10B135BFDF800B3E49F /* CJSONSerializer.m in Sources */, + 4B8CC10F135BFDF800B3E49F /* b2BroadPhase.cpp in Sources */, + 4B8CC112135BFDF800B3E49F /* b2CollideCircle.cpp in Sources */, + 4B8CC114135BFDF900B3E49F /* b2CollidePolygon.cpp in Sources */, + 4B8CC116135BFDF900B3E49F /* b2Collision.cpp in Sources */, + 4B8CC119135BFDF900B3E49F /* b2Distance.cpp in Sources */, + 4B8CC11C135BFDF900B3E49F /* b2DynamicTree.cpp in Sources */, + 4B8CC11F135BFDF900B3E49F /* b2TimeOfImpact.cpp in Sources */, + 4B8CC122135BFDF900B3E49F /* b2CircleShape.cpp in Sources */, + 4B8CC125135BFDF900B3E49F /* b2PolygonShape.cpp in Sources */, + 4B8CC129135BFDF900B3E49F /* b2BlockAllocator.cpp in Sources */, + 4B8CC12C135BFDF900B3E49F /* b2Math.cpp in Sources */, + 4B8CC12F135BFDF900B3E49F /* b2Settings.cpp in Sources */, + 4B8CC132135BFDF900B3E49F /* b2StackAllocator.cpp in Sources */, + 4B8CC135135BFDF900B3E49F /* b2Body.cpp in Sources */, + 4B8CC138135BFDF900B3E49F /* b2ContactManager.cpp in Sources */, + 4B8CC13B135BFDF900B3E49F /* b2Fixture.cpp in Sources */, + 4B8CC13E135BFDF900B3E49F /* b2Island.cpp in Sources */, + 4B8CC142135BFDF900B3E49F /* b2World.cpp in Sources */, + 4B8CC145135BFDF900B3E49F /* b2WorldCallbacks.cpp in Sources */, + 4B8CC148135BFDF900B3E49F /* b2CircleContact.cpp in Sources */, + 4B8CC14B135BFDF900B3E49F /* b2Contact.cpp in Sources */, + 4B8CC14E135BFDF900B3E49F /* b2ContactSolver.cpp in Sources */, + 4B8CC152135BFDF900B3E49F /* b2PolygonAndCircleContact.cpp in Sources */, + 4B8CC155135BFDF900B3E49F /* b2PolygonContact.cpp in Sources */, + 4B8CC158135BFDF900B3E49F /* b2TOISolver.cpp in Sources */, + 4B8CC15B135BFDF900B3E49F /* b2DistanceJoint.cpp in Sources */, + 4B8CC15E135BFDF900B3E49F /* b2FrictionJoint.cpp in Sources */, + 4B8CC161135BFDF900B3E49F /* b2GearJoint.cpp in Sources */, + 4B8CC164135BFDF900B3E49F /* b2Joint.cpp in Sources */, + 4B8CC167135BFDF900B3E49F /* b2LineJoint.cpp in Sources */, + 4B8CC16A135BFDF900B3E49F /* b2MouseJoint.cpp in Sources */, + 4B8CC16D135BFDF900B3E49F /* b2PrismaticJoint.cpp in Sources */, + 4B8CC170135BFDF900B3E49F /* b2PulleyJoint.cpp in Sources */, + 4B8CC173135BFDF900B3E49F /* b2RevoluteJoint.cpp in Sources */, + 4B8CC176135BFDF900B3E49F /* b2WeldJoint.cpp in Sources */, + 4B8CC17B135BFDF900B3E49F /* main.m in Sources */, + 4B8CC17E135BFDF900B3E49F /* AppDelegate.mm in Sources */, + 4B8CC181135BFDF900B3E49F /* RootViewController.m in Sources */, + 4B8CC184135BFDF900B3E49F /* HelloWorldLayer.mm in Sources */, + 4B8CC187135BFDF900B3E49F /* GLES-Render.mm in Sources */, + 4B8CC1C3135BFEDE00B3E49F /* LocklessRingBuffer.cpp in Sources */, + 4B8CC1C4135BFEDE00B3E49F /* BasicPrimitives.mm in Sources */, + 4B8CC1C5135BFEDE00B3E49F /* OpenGLServices.mm in Sources */, + 4B8CC1C6135BFEDE00B3E49F /* RenderTarget.mm in Sources */, + 4B8CC1C7135BFEDE00B3E49F /* MemoryBitset.cpp in Sources */, + 4B8CC1C8135BFEDE00B3E49F /* MemoryHeap.cpp in Sources */, + 4B8CC1C9135BFEDE00B3E49F /* GLView.m in Sources */, + 4B8CC1CA135BFEDE00B3E49F /* LittlestAppDelegate.m in Sources */, + 4B8CC1CB135BFEDE00B3E49F /* LittlestViewController.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 4B8CC18B135BFDF900B3E49F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_BIT)"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + DEBUG, + "COCOS2D_DEBUG=1", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_VERSION = com.apple.compilers.llvmgcc42; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 4.3; + SDKROOT = iphoneos; + }; + name = Debug; + }; + 4B8CC18C135BFDF900B3E49F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_BIT)"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_PREPROCESSOR_DEFINITIONS = NDEBUG; + GCC_VERSION = com.apple.compilers.llvmgcc42; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 4.3; + OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; + SDKROOT = iphoneos; + }; + name = Release; + }; + 4B8CC18E135BFDF900B3E49F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + COPY_PHASE_STRIP = NO; + GCC_CHAR_IS_UNSIGNED_CHAR = YES; + GCC_DYNAMIC_NO_PIC = NO; + GCC_ENABLE_OBJC_GC = supported; + GCC_FAST_MATH = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = Littlest/Prefix.pch; + GCC_PREPROCESSOR_DEFINITIONS = ( + DEBUG, + "COCOS2D_DEBUG=1", + __iOS__, + ); + "GCC_THUMB_SUPPORT[arch=armv6]" = ""; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_NEWLINE = NO; + GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES; + GCC_WARN_UNUSED_FUNCTION = NO; + GCC_WARN_UNUSED_PARAMETER = NO; + HEADER_SEARCH_PATHS = ( + "$(PROJECT_DIR)/Littlest/libs", + "$(PROJECT_DIR)/Littlest", + ); + INFOPLIST_FILE = Littlest/Resources/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 4.3; + OTHER_LDFLAGS = "-lz"; + PRODUCT_NAME = "$(TARGET_NAME)"; + TARGETED_DEVICE_FAMILY = "1,2"; + USER_HEADER_SEARCH_PATHS = ""; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + 4B8CC18F135BFDF900B3E49F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + COPY_PHASE_STRIP = YES; + GCC_CHAR_IS_UNSIGNED_CHAR = YES; + GCC_ENABLE_OBJC_GC = supported; + GCC_FAST_MATH = YES; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = Littlest/Prefix.pch; + GCC_PREPROCESSOR_DEFINITIONS = ( + NDEBUG, + __iOS__, + ); + "GCC_THUMB_SUPPORT[arch=armv6]" = ""; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_MISSING_NEWLINE = NO; + GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES; + GCC_WARN_UNUSED_FUNCTION = NO; + GCC_WARN_UNUSED_PARAMETER = NO; + HEADER_SEARCH_PATHS = ( + "$(PROJECT_DIR)/Littlest/libs", + "$(PROJECT_DIR)/Littlest", + ); + INFOPLIST_FILE = Littlest/Resources/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 4.3; + OTHER_LDFLAGS = "-lz"; + PRODUCT_NAME = "$(TARGET_NAME)"; + TARGETED_DEVICE_FAMILY = "1,2"; + USER_HEADER_SEARCH_PATHS = ""; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 4B8CBFAA135BFDF600B3E49F /* Build configuration list for PBXProject "Littlest" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4B8CC18B135BFDF900B3E49F /* Debug */, + 4B8CC18C135BFDF900B3E49F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4B8CC18D135BFDF900B3E49F /* Build configuration list for PBXNativeTarget "Littlest" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4B8CC18E135BFDF900B3E49F /* Debug */, + 4B8CC18F135BFDF900B3E49F /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; +/* End XCConfigurationList section */ + }; + rootObject = 4B8CBFA7135BFDF600B3E49F /* Project object */; +} diff --git a/Littlest.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Littlest.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..d89bc53 --- /dev/null +++ b/Littlest.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Littlest.xcodeproj/project.xcworkspace/xcuserdata/dorischen.xcuserdatad/UserInterfaceState.xcuserstate b/Littlest.xcodeproj/project.xcworkspace/xcuserdata/dorischen.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000..de53970 --- /dev/null +++ b/Littlest.xcodeproj/project.xcworkspace/xcuserdata/dorischen.xcuserdatad/UserInterfaceState.xcuserstate @@ -0,0 +1,36875 @@ + + + + + $archiver + NSKeyedArchiver + $objects + + $null + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 2 + + + CF$UID + 3 + + + CF$UID + 4 + + + CF$UID + 5 + + + CF$UID + 6 + + + CF$UID + 7 + + + CF$UID + 8 + + + CF$UID + 9 + + + CF$UID + 10 + + + CF$UID + 11 + + + CF$UID + 12 + + + CF$UID + 13 + + + CF$UID + 14 + + + CF$UID + 15 + + + CF$UID + 16 + + + CF$UID + 17 + + + CF$UID + 18 + + + CF$UID + 19 + + + CF$UID + 20 + + + CF$UID + 21 + + + CF$UID + 22 + + + NS.objects + + + CF$UID + 23 + + + CF$UID + 163 + + + CF$UID + 276 + + + CF$UID + 340 + + + CF$UID + 404 + + + CF$UID + 468 + + + CF$UID + 913 + + + CF$UID + 977 + + + CF$UID + 1041 + + + CF$UID + 1198 + + + CF$UID + 1288 + + + CF$UID + 1379 + + + CF$UID + 1443 + + + CF$UID + 1507 + + + CF$UID + 1598 + + + CF$UID + 1685 + + + CF$UID + 1749 + + + CF$UID + 1836 + + + CF$UID + 1926 + + + CF$UID + 1990 + + + CF$UID + 2054 + + + + D6B50A5F-6584-4D21-9035-AB198AFCDC2A + E9F19A15-53F3-4CF8-9810-05DB5D70D8B8 + 91D127CA-A396-4C5D-A14D-DBA7CB6BC492 + 71FFC500-3C53-4D7A-ABCA-4902ED2D43B7 + 0C40D9D4-4550-4415-AE1C-D9838E93B1BF + IDEWorkspaceDocument + BBA28386-C998-482A-A4CC-85F85F452810 + CEE79290-B2E9-4AB1-AF5F-F5E449823A41 + 2CEE9F7E-99CE-400E-AE44-BC46F997F577 + 87D93973-8AED-4550-AC40-BD5CD86D4E53 + 287AB00E-D0B9-49CF-8424-E1ECCB2C3E32 + 28C38E80-47C9-4929-8742-4900354C1F50 + 71EA20D8-64B9-4F7E-A4FF-634147920FD5 + B066DAC4-DD04-4D6A-9F4D-33CFD48F871F + 467B65F1-787F-447A-B712-B1E1351F71A6 + E10248F1-B560-4534-B44D-426F036CBB91 + E5A1741C-704E-4107-AD84-CA77CC000C66 + 66B5EDB0-04BA-48FC-93A4-8A4F206DE41D + EFDF78AB-62AC-4077-BBA8-BB7DBC36F55E + 68242A45-90A9-43F4-B8D1-513D040B74DF + 358E0463-4541-45B7-94C3-EB8594ECDFB9 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 24 + + + CF$UID + 25 + + + CF$UID + 26 + + + CF$UID + 27 + + + CF$UID + 28 + + + CF$UID + 29 + + + NS.objects + + + CF$UID + 30 + + + CF$UID + 161 + + + CF$UID + 39 + + + CF$UID + 24 + + + CF$UID + 162 + + + CF$UID + 2 + + + + IDEWorkspaceTabController_94E279B3-D43A-4045-AFED-03CDB1C0BFC8 + IDEOrderedWorkspaceTabControllers + IDEWindowToolbarIsVisible + IDEActiveWorkspaceTabController + IDEWindowFrame + IDEWorkspaceWindowControllerUniqueIdentifier + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 31 + + + CF$UID + 32 + + + CF$UID + 33 + + + CF$UID + 34 + + + CF$UID + 35 + + + CF$UID + 36 + + + CF$UID + 37 + + + NS.objects + + + CF$UID + 38 + + + CF$UID + 39 + + + CF$UID + 40 + + + CF$UID + 53 + + + CF$UID + 88 + + + CF$UID + 39 + + + CF$UID + 97 + + + + AssistantEditorsLayout + IDEShowNavigator + IDEWorkspaceTabControllerUtilityAreaSplitView + IDENavigatorArea + IDEWorkspaceTabControllerDesignAreaSplitView + IDEShowUtilities + IDEEditorArea + 0 + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 42 + + + + DVTSplitViewItems + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 43 + + + CF$UID + 49 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 47 + + + + DVTIdentifier + DVTViewMagnitude + + 389 + + $classes + + NSDictionary + NSObject + + $classname + NSDictionary + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 50 + + + + 211 + + $classes + + NSMutableArray + NSArray + NSObject + + $classname + NSMutableArray + + + $classes + + NSMutableDictionary + NSDictionary + NSObject + + $classname + NSMutableDictionary + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 54 + + + CF$UID + 55 + + + CF$UID + 56 + + + NS.objects + + + CF$UID + 57 + + + CF$UID + 54 + + + CF$UID + 75 + + + + Xcode.IDEKit.Navigator.Issues + SelectedNavigator + Xcode.IDEKit.Navigator.Structure + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 58 + + + CF$UID + 59 + + + CF$UID + 60 + + + CF$UID + 61 + + + CF$UID + 62 + + + CF$UID + 63 + + + CF$UID + 64 + + + CF$UID + 65 + + + CF$UID + 66 + + + CF$UID + 67 + + + NS.objects + + + CF$UID + 39 + + + CF$UID + 68 + + + CF$UID + 69 + + + CF$UID + 71 + + + CF$UID + 72 + + + CF$UID + 39 + + + CF$UID + 39 + + + CF$UID + 73 + + + CF$UID + 39 + + + CF$UID + 74 + + + + IDEErrorFilteringEnabled + IDEVisibleRect + IDECollapsedFiles + IDEExpandedIssues + IDESelectedNavigables + IDEShowsByType + IDESchemeFilteringEnabled + IDECollapsedTypes + IDERecentFilteringEnabled + IDECollapsedGroups + {{0, 0}, {0, 0}} + + $class + + CF$UID + 70 + + NS.objects + + + + $classes + + NSMutableSet + NSSet + NSObject + + $classname + NSMutableSet + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 51 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 76 + + + CF$UID + 77 + + + CF$UID + 78 + + + CF$UID + 79 + + + CF$UID + 80 + + + CF$UID + 81 + + + CF$UID + 82 + + + NS.objects + + + CF$UID + 83 + + + CF$UID + 39 + + + CF$UID + 84 + + + CF$UID + 39 + + + CF$UID + 39 + + + CF$UID + 86 + + + CF$UID + 84 + + + + IDEVisibleRect + IDEUnsavedDocumentFilteringEnabled + IDENavigatorExpandedItemsBeforeFilteringSet + IDERecentDocumentFilteringEnabled + IDESCMStatusFilteringEnabled + IDESelectedObjects + IDEExpandedItemsSet + {{0, 0}, {259, 832}} + + $class + + CF$UID + 85 + + NS.objects + + + + $classes + + NSSet + NSObject + + $classname + NSSet + + + $class + + CF$UID + 87 + + NS.objects + + + + $classes + + NSArray + NSObject + + $classname + NSArray + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 89 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 90 + + + CF$UID + 92 + + + CF$UID + 94 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 34 + + + CF$UID + 91 + + + + 594 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 37 + + + CF$UID + 93 + + + + 746 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 95 + + + CF$UID + 96 + + + + IDEUtilitiesArea + 260 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 98 + + + CF$UID + 99 + + + CF$UID + 100 + + + CF$UID + 101 + + + CF$UID + 102 + + + CF$UID + 103 + + + CF$UID + 104 + + + CF$UID + 105 + + + NS.objects + + + CF$UID + 106 + + + CF$UID + 112 + + + CF$UID + 124 + + + CF$UID + 151 + + + CF$UID + 38 + + + CF$UID + 152 + + + CF$UID + 160 + + + CF$UID + 39 + + + + layoutTree + IDEEditorMode_Standard + IDEEDitorArea_DebugArea + IDEShowEditor + EditorMode + DebuggerSplitView + DefaultPersistentRepresentations + ShowDebuggerArea + + $class + + CF$UID + 111 + + geniusEditorContextNode + + CF$UID + 0 + + primaryEditorContextNode + + CF$UID + 107 + + rootLayoutTreeNode + + CF$UID + 108 + + + + $class + + CF$UID + 110 + + children + + CF$UID + 0 + + contentType + 1 + documentArchivableRepresentation + + CF$UID + 0 + + orientation + 0 + parent + + CF$UID + 108 + + + + $class + + CF$UID + 110 + + children + + CF$UID + 109 + + contentType + 0 + documentArchivableRepresentation + + CF$UID + 0 + + orientation + 0 + parent + + CF$UID + 0 + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 107 + + + + + $classes + + IDEWorkspaceTabControllerLayoutTreeNode + NSObject + + $classname + IDEWorkspaceTabControllerLayoutTreeNode + + + $classes + + IDEWorkspaceTabControllerLayoutTree + NSObject + + $classname + IDEWorkspaceTabControllerLayoutTree + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 113 + + + NS.objects + + + CF$UID + 114 + + + + EditorLayout_PersistentRepresentation + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 115 + + + NS.objects + + + CF$UID + 116 + + + + Main + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 117 + + + CF$UID + 118 + + + CF$UID + 119 + + + NS.objects + + + CF$UID + 120 + + + CF$UID + 38 + + + CF$UID + 122 + + + + EditorLayout_StateSavingStateDictionaries + EditorLayout_Selected + EditorLayout_Geometry + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 121 + + + + + $class + + CF$UID + 52 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 123 + + + + {{0, 0}, {600, 600}} + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 125 + + + CF$UID + 126 + + + CF$UID + 127 + + + CF$UID + 128 + + + CF$UID + 129 + + + CF$UID + 130 + + + NS.objects + + + CF$UID + 131 + + + CF$UID + 132 + + + CF$UID + 134 + + + CF$UID + 131 + + + CF$UID + 137 + + + CF$UID + 145 + + + + LayoutFocusMode + console + variables + LayoutMode + IDEDebugArea_SplitView + IDEDebuggerAreaSplitView + 1 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 133 + + + NS.objects + + + CF$UID + 38 + + + + ConsoleFilterMode + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 135 + + + NS.objects + + + CF$UID + 136 + + + + DBGVariablesViewFilterMode + 2 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 138 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 139 + + + CF$UID + 142 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 140 + + + CF$UID + 141 + + + + VariablesView + 298 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 143 + + + CF$UID + 144 + + + + ConsoleArea + 301 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 146 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 147 + + + CF$UID + 149 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 140 + + + CF$UID + 148 + + + + 298 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 143 + + + CF$UID + 150 + + + + 301 + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 153 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 154 + + + CF$UID + 157 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 155 + + + CF$UID + 156 + + + + IDEEditor + 203 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 158 + + + CF$UID + 159 + + + + IDEDebuggerArea + 115 + + $class + + CF$UID + 52 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 24 + + + + {{178, 349}, {600, 624}} + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 29 + + + CF$UID + 25 + + + CF$UID + 26 + + + CF$UID + 27 + + + CF$UID + 164 + + + CF$UID + 28 + + + NS.objects + + + CF$UID + 3 + + + CF$UID + 165 + + + CF$UID + 39 + + + CF$UID + 164 + + + CF$UID + 166 + + + CF$UID + 275 + + + + IDEWorkspaceTabController_B2AFD575-4400-4F7F-BAD2-5EBE90AC935A + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 164 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 167 + + + CF$UID + 32 + + + CF$UID + 31 + + + CF$UID + 33 + + + CF$UID + 34 + + + CF$UID + 35 + + + CF$UID + 36 + + + CF$UID + 37 + + + NS.objects + + + CF$UID + 168 + + + CF$UID + 39 + + + CF$UID + 38 + + + CF$UID + 169 + + + CF$UID + 175 + + + CF$UID + 186 + + + CF$UID + 39 + + + CF$UID + 194 + + + + IDETabLabel + b2BroadPhase.cpp + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 170 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 171 + + + CF$UID + 173 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 172 + + + + 577 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 174 + + + + 211 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 54 + + + CF$UID + 55 + + + CF$UID + 56 + + + NS.objects + + + CF$UID + 176 + + + CF$UID + 54 + + + CF$UID + 183 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 58 + + + CF$UID + 59 + + + CF$UID + 60 + + + CF$UID + 61 + + + CF$UID + 62 + + + CF$UID + 63 + + + CF$UID + 64 + + + CF$UID + 65 + + + CF$UID + 66 + + + CF$UID + 67 + + + NS.objects + + + CF$UID + 39 + + + CF$UID + 177 + + + CF$UID + 178 + + + CF$UID + 179 + + + CF$UID + 180 + + + CF$UID + 39 + + + CF$UID + 39 + + + CF$UID + 181 + + + CF$UID + 39 + + + CF$UID + 182 + + + + {{0, 0}, {0, 0}} + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 51 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 76 + + + CF$UID + 77 + + + CF$UID + 78 + + + CF$UID + 79 + + + CF$UID + 80 + + + CF$UID + 81 + + + CF$UID + 82 + + + NS.objects + + + CF$UID + 184 + + + CF$UID + 39 + + + CF$UID + 84 + + + CF$UID + 39 + + + CF$UID + 39 + + + CF$UID + 185 + + + CF$UID + 84 + + + + {{0, 0}, {259, 832}} + + $class + + CF$UID + 87 + + NS.objects + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 187 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 188 + + + CF$UID + 190 + + + CF$UID + 192 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 34 + + + CF$UID + 189 + + + + 260 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 37 + + + CF$UID + 191 + + + + 1080 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 95 + + + CF$UID + 193 + + + + 260 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 98 + + + CF$UID + 99 + + + CF$UID + 100 + + + CF$UID + 101 + + + CF$UID + 102 + + + CF$UID + 103 + + + CF$UID + 104 + + + CF$UID + 105 + + + NS.objects + + + CF$UID + 195 + + + CF$UID + 218 + + + CF$UID + 253 + + + CF$UID + 151 + + + CF$UID + 38 + + + CF$UID + 268 + + + CF$UID + 274 + + + CF$UID + 39 + + + + + $class + + CF$UID + 111 + + geniusEditorContextNode + + CF$UID + 0 + + primaryEditorContextNode + + CF$UID + 196 + + rootLayoutTreeNode + + CF$UID + 216 + + + + $class + + CF$UID + 110 + + children + + CF$UID + 0 + + contentType + 1 + documentArchivableRepresentation + + CF$UID + 197 + + orientation + 0 + parent + + CF$UID + 216 + + + + $class + + CF$UID + 215 + + DocumentLocation + + CF$UID + 211 + + DomainIdentifier + + CF$UID + 198 + + IdentifierPath + + CF$UID + 199 + + IndexOfDocumentIdentifier + + CF$UID + 38 + + + Xcode.IDENavigableItemDomain.WorkspaceStructure + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 200 + + + CF$UID + 203 + + + CF$UID + 205 + + + CF$UID + 207 + + + CF$UID + 209 + + + + + $class + + CF$UID + 202 + + Identifier + + CF$UID + 201 + + + b2BroadPhase.cpp + + $classes + + IDEArchivableStringIndexPair + NSObject + + $classname + IDEArchivableStringIndexPair + + + $class + + CF$UID + 202 + + Identifier + + CF$UID + 204 + + + Box2D + + $class + + CF$UID + 202 + + Identifier + + CF$UID + 206 + + + libs + + $class + + CF$UID + 202 + + Identifier + + CF$UID + 208 + + + Littlest + + $class + + CF$UID + 202 + + Identifier + + CF$UID + 210 + + + Littlest + + $class + + CF$UID + 214 + + documentURL + + CF$UID + 212 + + timestamp + + CF$UID + 0 + + + + $class + + CF$UID + 213 + + NS.string + file://localhost/Users/dorischen/Documents/Temp/Littlest/Littlest/libs/Box2D/Collision/b2BroadPhase.cpp + + + $classes + + NSMutableString + NSString + NSObject + + $classname + NSMutableString + + + $classes + + DVTDocumentLocation + NSObject + + $classname + DVTDocumentLocation + + + $classes + + IDENavigableItemArchivableRepresentation + NSObject + + $classname + IDENavigableItemArchivableRepresentation + + + $class + + CF$UID + 110 + + children + + CF$UID + 217 + + contentType + 0 + documentArchivableRepresentation + + CF$UID + 0 + + orientation + 0 + parent + + CF$UID + 0 + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 196 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 113 + + + NS.objects + + + CF$UID + 219 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 115 + + + NS.objects + + + CF$UID + 220 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 117 + + + CF$UID + 118 + + + CF$UID + 119 + + + NS.objects + + + CF$UID + 221 + + + CF$UID + 38 + + + CF$UID + 251 + + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 222 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 223 + + + CF$UID + 224 + + + CF$UID + 225 + + + CF$UID + 226 + + + CF$UID + 227 + + + CF$UID + 228 + + + CF$UID + 229 + + + NS.objects + + + CF$UID + 230 + + + CF$UID + 231 + + + CF$UID + 239 + + + CF$UID + 201 + + + CF$UID + 201 + + + CF$UID + 247 + + + CF$UID + 248 + + + + FileDataType + ArchivableRepresentation + EditorState + NavigableItemName + DocumentNavigableItemName + DocumentExtensionIdentifier + DocumentURL + public.c-plus-plus-source + + $class + + CF$UID + 215 + + DocumentLocation + + CF$UID + 211 + + DomainIdentifier + + CF$UID + 198 + + IdentifierPath + + CF$UID + 232 + + IndexOfDocumentIdentifier + + CF$UID + 38 + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 233 + + + CF$UID + 234 + + + CF$UID + 235 + + + CF$UID + 236 + + + CF$UID + 237 + + + + + $class + + CF$UID + 202 + + Identifier + + CF$UID + 201 + + + + $class + + CF$UID + 202 + + Identifier + + CF$UID + 204 + + + + $class + + CF$UID + 202 + + Identifier + + CF$UID + 206 + + + + $class + + CF$UID + 202 + + Identifier + + CF$UID + 208 + + + + $class + + CF$UID + 202 + + Identifier + + CF$UID + 238 + + + Littlest + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 240 + + + CF$UID + 241 + + + CF$UID + 242 + + + CF$UID + 243 + + + NS.objects + + + CF$UID + 244 + + + CF$UID + 245 + + + CF$UID + 39 + + + CF$UID + 246 + + + + PrimaryDocumentTimestamp + PrimaryDocumentVisibleCharacterRange + HideAllIssues + PrimaryDocumentSelectedCharacterRange + 324798645.71748698 + {0, 1845} + {919, 0} + Xcode.IDEKit.EditorDocument.SourceCode + + $class + + CF$UID + 250 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 249 + + + file://localhost/Users/dorischen/Documents/Temp/Littlest/Littlest/libs/Box2D/Collision/b2BroadPhase.cpp + + $classes + + NSURL + NSObject + + $classname + NSURL + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 252 + + + + {{0, 0}, {1058, 788}} + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 125 + + + CF$UID + 126 + + + CF$UID + 127 + + + CF$UID + 128 + + + CF$UID + 129 + + + CF$UID + 130 + + + NS.objects + + + CF$UID + 131 + + + CF$UID + 254 + + + CF$UID + 255 + + + CF$UID + 131 + + + CF$UID + 256 + + + CF$UID + 262 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 133 + + + NS.objects + + + CF$UID + 38 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 135 + + + NS.objects + + + CF$UID + 136 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 257 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 258 + + + CF$UID + 260 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 140 + + + CF$UID + 259 + + + + 526 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 143 + + + CF$UID + 261 + + + + 531 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 263 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 264 + + + CF$UID + 266 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 140 + + + CF$UID + 265 + + + + 526 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 143 + + + CF$UID + 267 + + + + 531 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 269 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 270 + + + CF$UID + 272 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 155 + + + CF$UID + 271 + + + + 203 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 158 + + + CF$UID + 273 + + + + 115 + + $class + + CF$UID + 52 + + NS.keys + + NS.objects + + + {{220, 24}, {1058, 812}} + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 29 + + + CF$UID + 25 + + + CF$UID + 26 + + + CF$UID + 27 + + + CF$UID + 28 + + + CF$UID + 277 + + + NS.objects + + + CF$UID + 4 + + + CF$UID + 278 + + + CF$UID + 39 + + + CF$UID + 277 + + + CF$UID + 279 + + + CF$UID + 280 + + + + IDEWorkspaceTabController_0A175525-D973-47FD-8639-29BF0D25BACE + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 277 + + + + {{52, 487}, {600, 624}} + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 31 + + + CF$UID + 32 + + + CF$UID + 33 + + + CF$UID + 34 + + + CF$UID + 35 + + + CF$UID + 36 + + + CF$UID + 37 + + + NS.objects + + + CF$UID + 38 + + + CF$UID + 39 + + + CF$UID + 281 + + + CF$UID + 287 + + + CF$UID + 298 + + + CF$UID + 39 + + + CF$UID + 306 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 282 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 283 + + + CF$UID + 285 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 284 + + + + 376 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 286 + + + + 224 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 54 + + + CF$UID + 55 + + + CF$UID + 56 + + + NS.objects + + + CF$UID + 288 + + + CF$UID + 54 + + + CF$UID + 295 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 58 + + + CF$UID + 59 + + + CF$UID + 60 + + + CF$UID + 61 + + + CF$UID + 62 + + + CF$UID + 63 + + + CF$UID + 64 + + + CF$UID + 65 + + + CF$UID + 66 + + + CF$UID + 67 + + + NS.objects + + + CF$UID + 39 + + + CF$UID + 289 + + + CF$UID + 290 + + + CF$UID + 291 + + + CF$UID + 292 + + + CF$UID + 39 + + + CF$UID + 39 + + + CF$UID + 293 + + + CF$UID + 39 + + + CF$UID + 294 + + + + {{0, 0}, {0, 0}} + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 51 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 76 + + + CF$UID + 77 + + + CF$UID + 78 + + + CF$UID + 79 + + + CF$UID + 80 + + + CF$UID + 81 + + + CF$UID + 82 + + + NS.objects + + + CF$UID + 296 + + + CF$UID + 39 + + + CF$UID + 84 + + + CF$UID + 39 + + + CF$UID + 39 + + + CF$UID + 297 + + + CF$UID + 84 + + + + {{0, 0}, {259, 832}} + + $class + + CF$UID + 87 + + NS.objects + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 299 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 300 + + + CF$UID + 302 + + + CF$UID + 304 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 34 + + + CF$UID + 301 + + + + 260 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 37 + + + CF$UID + 303 + + + + 880 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 95 + + + CF$UID + 305 + + + + 260 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 98 + + + CF$UID + 99 + + + CF$UID + 100 + + + CF$UID + 101 + + + CF$UID + 102 + + + CF$UID + 103 + + + CF$UID + 104 + + + CF$UID + 105 + + + NS.objects + + + CF$UID + 307 + + + CF$UID + 311 + + + CF$UID + 318 + + + CF$UID + 151 + + + CF$UID + 38 + + + CF$UID + 333 + + + CF$UID + 339 + + + CF$UID + 39 + + + + + $class + + CF$UID + 111 + + geniusEditorContextNode + + CF$UID + 0 + + primaryEditorContextNode + + CF$UID + 308 + + rootLayoutTreeNode + + CF$UID + 309 + + + + $class + + CF$UID + 110 + + children + + CF$UID + 0 + + contentType + 1 + documentArchivableRepresentation + + CF$UID + 0 + + orientation + 0 + parent + + CF$UID + 309 + + + + $class + + CF$UID + 110 + + children + + CF$UID + 310 + + contentType + 0 + documentArchivableRepresentation + + CF$UID + 0 + + orientation + 0 + parent + + CF$UID + 0 + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 308 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 113 + + + NS.objects + + + CF$UID + 312 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 115 + + + NS.objects + + + CF$UID + 313 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 117 + + + CF$UID + 118 + + + CF$UID + 119 + + + NS.objects + + + CF$UID + 314 + + + CF$UID + 38 + + + CF$UID + 316 + + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 315 + + + + + $class + + CF$UID + 52 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 317 + + + + {{0, 0}, {600, 600}} + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 125 + + + CF$UID + 126 + + + CF$UID + 127 + + + CF$UID + 128 + + + CF$UID + 129 + + + CF$UID + 130 + + + NS.objects + + + CF$UID + 131 + + + CF$UID + 319 + + + CF$UID + 320 + + + CF$UID + 131 + + + CF$UID + 321 + + + CF$UID + 327 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 133 + + + NS.objects + + + CF$UID + 38 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 135 + + + NS.objects + + + CF$UID + 136 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 322 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 323 + + + CF$UID + 325 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 140 + + + CF$UID + 324 + + + + 298 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 143 + + + CF$UID + 326 + + + + 301 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 328 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 329 + + + CF$UID + 331 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 140 + + + CF$UID + 330 + + + + 298 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 143 + + + CF$UID + 332 + + + + 301 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 334 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 335 + + + CF$UID + 337 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 155 + + + CF$UID + 336 + + + + 203 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 158 + + + CF$UID + 338 + + + + 115 + + $class + + CF$UID + 52 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 341 + + + CF$UID + 25 + + + CF$UID + 26 + + + CF$UID + 27 + + + CF$UID + 28 + + + CF$UID + 29 + + + NS.objects + + + CF$UID + 342 + + + CF$UID + 402 + + + CF$UID + 39 + + + CF$UID + 341 + + + CF$UID + 403 + + + CF$UID + 5 + + + + IDEWorkspaceTabController_B71AA6F6-0E9F-4181-AA98-32814D0D33A5 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 31 + + + CF$UID + 32 + + + CF$UID + 33 + + + CF$UID + 34 + + + CF$UID + 35 + + + CF$UID + 36 + + + CF$UID + 37 + + + NS.objects + + + CF$UID + 38 + + + CF$UID + 39 + + + CF$UID + 343 + + + CF$UID + 349 + + + CF$UID + 360 + + + CF$UID + 39 + + + CF$UID + 368 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 344 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 345 + + + CF$UID + 347 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 346 + + + + 376 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 348 + + + + 224 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 54 + + + CF$UID + 55 + + + CF$UID + 56 + + + NS.objects + + + CF$UID + 350 + + + CF$UID + 54 + + + CF$UID + 357 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 58 + + + CF$UID + 59 + + + CF$UID + 60 + + + CF$UID + 61 + + + CF$UID + 62 + + + CF$UID + 63 + + + CF$UID + 64 + + + CF$UID + 65 + + + CF$UID + 66 + + + CF$UID + 67 + + + NS.objects + + + CF$UID + 39 + + + CF$UID + 351 + + + CF$UID + 352 + + + CF$UID + 353 + + + CF$UID + 354 + + + CF$UID + 39 + + + CF$UID + 39 + + + CF$UID + 355 + + + CF$UID + 39 + + + CF$UID + 356 + + + + {{0, 0}, {0, 0}} + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 51 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 76 + + + CF$UID + 77 + + + CF$UID + 78 + + + CF$UID + 79 + + + CF$UID + 80 + + + CF$UID + 81 + + + CF$UID + 82 + + + NS.objects + + + CF$UID + 358 + + + CF$UID + 39 + + + CF$UID + 84 + + + CF$UID + 39 + + + CF$UID + 39 + + + CF$UID + 359 + + + CF$UID + 84 + + + + {{0, 0}, {259, 832}} + + $class + + CF$UID + 87 + + NS.objects + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 361 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 362 + + + CF$UID + 364 + + + CF$UID + 366 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 34 + + + CF$UID + 363 + + + + 260 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 37 + + + CF$UID + 365 + + + + 880 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 95 + + + CF$UID + 367 + + + + 260 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 98 + + + CF$UID + 99 + + + CF$UID + 100 + + + CF$UID + 101 + + + CF$UID + 102 + + + CF$UID + 103 + + + CF$UID + 104 + + + CF$UID + 105 + + + NS.objects + + + CF$UID + 369 + + + CF$UID + 373 + + + CF$UID + 380 + + + CF$UID + 151 + + + CF$UID + 38 + + + CF$UID + 395 + + + CF$UID + 401 + + + CF$UID + 39 + + + + + $class + + CF$UID + 111 + + geniusEditorContextNode + + CF$UID + 0 + + primaryEditorContextNode + + CF$UID + 370 + + rootLayoutTreeNode + + CF$UID + 371 + + + + $class + + CF$UID + 110 + + children + + CF$UID + 0 + + contentType + 1 + documentArchivableRepresentation + + CF$UID + 0 + + orientation + 0 + parent + + CF$UID + 371 + + + + $class + + CF$UID + 110 + + children + + CF$UID + 372 + + contentType + 0 + documentArchivableRepresentation + + CF$UID + 0 + + orientation + 0 + parent + + CF$UID + 0 + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 370 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 113 + + + NS.objects + + + CF$UID + 374 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 115 + + + NS.objects + + + CF$UID + 375 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 117 + + + CF$UID + 118 + + + CF$UID + 119 + + + NS.objects + + + CF$UID + 376 + + + CF$UID + 38 + + + CF$UID + 378 + + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 377 + + + + + $class + + CF$UID + 52 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 379 + + + + {{0, 0}, {600, 600}} + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 125 + + + CF$UID + 126 + + + CF$UID + 127 + + + CF$UID + 128 + + + CF$UID + 129 + + + CF$UID + 130 + + + NS.objects + + + CF$UID + 131 + + + CF$UID + 381 + + + CF$UID + 382 + + + CF$UID + 131 + + + CF$UID + 383 + + + CF$UID + 389 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 133 + + + NS.objects + + + CF$UID + 38 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 135 + + + NS.objects + + + CF$UID + 136 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 384 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 385 + + + CF$UID + 387 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 140 + + + CF$UID + 386 + + + + 298 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 143 + + + CF$UID + 388 + + + + 301 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 390 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 391 + + + CF$UID + 393 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 140 + + + CF$UID + 392 + + + + 298 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 143 + + + CF$UID + 394 + + + + 301 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 396 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 397 + + + CF$UID + 399 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 155 + + + CF$UID + 398 + + + + 203 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 158 + + + CF$UID + 400 + + + + 115 + + $class + + CF$UID + 52 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 341 + + + + {{144, 400}, {600, 624}} + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 405 + + + CF$UID + 25 + + + CF$UID + 26 + + + CF$UID + 27 + + + CF$UID + 28 + + + CF$UID + 29 + + + NS.objects + + + CF$UID + 406 + + + CF$UID + 466 + + + CF$UID + 39 + + + CF$UID + 405 + + + CF$UID + 467 + + + CF$UID + 6 + + + + IDEWorkspaceTabController_1CAC0209-C113-449D-B793-9A27F553FA36 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 31 + + + CF$UID + 32 + + + CF$UID + 33 + + + CF$UID + 34 + + + CF$UID + 35 + + + CF$UID + 36 + + + CF$UID + 37 + + + NS.objects + + + CF$UID + 38 + + + CF$UID + 39 + + + CF$UID + 407 + + + CF$UID + 413 + + + CF$UID + 424 + + + CF$UID + 39 + + + CF$UID + 432 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 408 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 409 + + + CF$UID + 411 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 410 + + + + 389 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 412 + + + + 211 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 54 + + + CF$UID + 55 + + + CF$UID + 56 + + + NS.objects + + + CF$UID + 414 + + + CF$UID + 54 + + + CF$UID + 421 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 58 + + + CF$UID + 59 + + + CF$UID + 60 + + + CF$UID + 61 + + + CF$UID + 62 + + + CF$UID + 63 + + + CF$UID + 64 + + + CF$UID + 65 + + + CF$UID + 66 + + + CF$UID + 67 + + + NS.objects + + + CF$UID + 39 + + + CF$UID + 415 + + + CF$UID + 416 + + + CF$UID + 417 + + + CF$UID + 418 + + + CF$UID + 39 + + + CF$UID + 39 + + + CF$UID + 419 + + + CF$UID + 39 + + + CF$UID + 420 + + + + {{0, 0}, {0, 0}} + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 51 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 70 + + NS.objects + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 76 + + + CF$UID + 77 + + + CF$UID + 78 + + + CF$UID + 79 + + + CF$UID + 80 + + + CF$UID + 81 + + + CF$UID + 82 + + + NS.objects + + + CF$UID + 422 + + + CF$UID + 39 + + + CF$UID + 84 + + + CF$UID + 39 + + + CF$UID + 39 + + + CF$UID + 423 + + + CF$UID + 84 + + + + {{0, 0}, {259, 832}} + + $class + + CF$UID + 87 + + NS.objects + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 425 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 426 + + + CF$UID + 428 + + + CF$UID + 430 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 34 + + + CF$UID + 427 + + + + 260 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 37 + + + CF$UID + 429 + + + + 1080 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 95 + + + CF$UID + 431 + + + + 260 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 98 + + + CF$UID + 99 + + + CF$UID + 100 + + + CF$UID + 101 + + + CF$UID + 102 + + + CF$UID + 103 + + + CF$UID + 104 + + + CF$UID + 105 + + + NS.objects + + + CF$UID + 433 + + + CF$UID + 437 + + + CF$UID + 444 + + + CF$UID + 151 + + + CF$UID + 38 + + + CF$UID + 459 + + + CF$UID + 465 + + + CF$UID + 39 + + + + + $class + + CF$UID + 111 + + geniusEditorContextNode + + CF$UID + 0 + + primaryEditorContextNode + + CF$UID + 434 + + rootLayoutTreeNode + + CF$UID + 435 + + + + $class + + CF$UID + 110 + + children + + CF$UID + 0 + + contentType + 1 + documentArchivableRepresentation + + CF$UID + 0 + + orientation + 0 + parent + + CF$UID + 435 + + + + $class + + CF$UID + 110 + + children + + CF$UID + 436 + + contentType + 0 + documentArchivableRepresentation + + CF$UID + 0 + + orientation + 0 + parent + + CF$UID + 0 + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 434 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 113 + + + NS.objects + + + CF$UID + 438 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 115 + + + NS.objects + + + CF$UID + 439 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 117 + + + CF$UID + 118 + + + CF$UID + 119 + + + NS.objects + + + CF$UID + 440 + + + CF$UID + 38 + + + CF$UID + 442 + + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 441 + + + + + $class + + CF$UID + 52 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 443 + + + + {{0, 0}, {600, 600}} + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 125 + + + CF$UID + 126 + + + CF$UID + 127 + + + CF$UID + 128 + + + CF$UID + 129 + + + CF$UID + 130 + + + NS.objects + + + CF$UID + 131 + + + CF$UID + 445 + + + CF$UID + 446 + + + CF$UID + 131 + + + CF$UID + 447 + + + CF$UID + 453 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 133 + + + NS.objects + + + CF$UID + 38 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 135 + + + NS.objects + + + CF$UID + 136 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 448 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 449 + + + CF$UID + 451 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 140 + + + CF$UID + 450 + + + + 298 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 143 + + + CF$UID + 452 + + + + 301 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 454 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 455 + + + CF$UID + 457 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 140 + + + CF$UID + 456 + + + + 298 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 143 + + + CF$UID + 458 + + + + 301 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 460 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 461 + + + CF$UID + 463 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 155 + + + CF$UID + 462 + + + + 203 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 158 + + + CF$UID + 464 + + + + 115 + + $class + + CF$UID + 52 + + NS.keys + + NS.objects + + + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 405 + + + + {{115, 418}, {600, 624}} + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 469 + + + CF$UID + 470 + + + CF$UID + 471 + + + CF$UID + 472 + + + CF$UID + 473 + + + CF$UID + 474 + + + CF$UID + 475 + + + CF$UID + 476 + + + CF$UID + 477 + + + CF$UID + 478 + + + CF$UID + 479 + + + NS.objects + + + CF$UID + 151 + + + CF$UID + 480 + + + CF$UID + 38 + + + CF$UID + 828 + + + CF$UID + 833 + + + CF$UID + 836 + + + CF$UID + 861 + + + CF$UID + 862 + + + CF$UID + 893 + + + CF$UID + 39 + + + CF$UID + 39 + + + + BreakpointsActivated + DefaultEditorStatesForURLs + DebuggingWindowBehavior + ActiveRunDestination + ActiveScheme + DefaultEditorFrameSizeForURLs + DocumentWindows + LastCompletedPersistentSchemeBasedActivityReport + RecentEditorDocumentURLs + AppFocusInMiniDebugging + MiniDebuggingConsole + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 481 + + + CF$UID + 247 + + + NS.objects + + + CF$UID + 482 + + + CF$UID + 713 + + + + Xcode.Xcode3ProjectSupport.EditorDocument.Xcode3Project + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 483 + + + NS.objects + + + CF$UID + 485 + + + + + $class + + CF$UID + 250 + + NS.base + + CF$UID + 0 + + NS.relative + + CF$UID + 484 + + + + $class + + CF$UID + 213 + + NS.string + file://localhost/Users/dorischen/Documents/Temp/Littlest/Littlest.xcodeproj/ + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 486 + + + CF$UID + 487 + + + CF$UID + 488 + + + CF$UID + 489 + + + CF$UID + 490 + + + NS.objects + + + CF$UID + 491 + + + CF$UID + 492 + + + CF$UID + 498 + + + CF$UID + 499 + + + CF$UID + 712 + + + + Xcode3ProjectEditorPreviousProjectEditorClass + Xcode3ProjectEditor.sourceList.splitview + Xcode3ProjectEditorPreviousTargetEditorClass + Xcode3ProjectEditorSelectedDocumentLocations + Xcode3ProjectEditor_Xcode3BuildSettingsEditor + Xcode3BuildSettingsEditor + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 41 + + + NS.objects + + + CF$UID + 493 + + + + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 494 + + + CF$UID + 496 + + + + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 495 + + + + 170 + + $class + + CF$UID + 48 + + NS.keys + + + CF$UID + 44 + + + CF$UID + 45 + + + NS.objects + + + CF$UID + 46 + + + CF$UID + 497 + + + + 576 + Xcode3BuildSettingsEditor + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 500 + + + + + $class + + CF$UID + 711 + + documentURL + + CF$UID + 501 + + selection + + CF$UID + 503 + + timestamp + + CF$UID + 502 + + + file://localhost/Users/dorischen/Documents/Temp/Littlest/Littlest.xcodeproj/ + 324798986.57572001 + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 504 + + + CF$UID + 505 + + + CF$UID + 506 + + + NS.objects + + + CF$UID + 507 + + + CF$UID + 508 + + + CF$UID + 509 + + + + Editor + Target + Xcode3BuildSettingsEditorLocations + Xcode3BuildSettingsEditor + Littlest + + $class + + CF$UID + 87 + + NS.objects + + + CF$UID + 510 + + + + + $class + + CF$UID + 52 + + NS.keys + + + CF$UID + 511 + + + CF$UID + 512 + + + CF$UID + 513 + + + CF$UID + 514 + + + CF$UID + 515 + + + CF$UID + 516 + + + NS.objects + + + CF$UID + 517 + + + CF$UID + 709 + + + CF$UID + 38 + + + CF$UID + 38 + + + CF$UID + 38 + + + CF$UID + 131 + + + + Collapsed Build Property Categories + Selected Build Properties + Xcode3BuildSettingsEditorDisplayMode + Xcode3BuildPropertyValueDisplayMode + Xcode3BuildSettingsEditorMode + Xcode3BuildPropertyNameDisplayMode + + $class + + CF$UID + 51 + + NS.objects + + + CF$UID + 518 + + + CF$UID + 519 + + + CF$UID + 520 + + + CF$UID + 521 + + + CF$UID + 522 + + + CF$UID + 523 + + + CF$UID + 524 + + + CF$UID + 525 + + + CF$UID + 526 + + + CF$UID + 527 + + + CF$UID + 528 + + + CF$UID + 529 + + + CF$UID + 530 + + + CF$UID + 531 + + + CF$UID + 532 + + + CF$UID + 533 + + + CF$UID + 534 + + + CF$UID + 535 + + + CF$UID + 536 + + + CF$UID + 537 + + + CF$UID + 538 + + + CF$UID + 539 + + + CF$UID + 540 + + + CF$UID + 541 + + + CF$UID + 542 + + + CF$UID + 543 + + + CF$UID + 544 + + + CF$UID + 545 + + + CF$UID + 546 + + + CF$UID + 547 + + + CF$UID + 548 + + + CF$UID + 549 + + + CF$UID + 550 + + + CF$UID + 551 + + + CF$UID + 552 + + + CF$UID + 553 + + + CF$UID + 554 + + + CF$UID + 555 + + + CF$UID + 556 + + + CF$UID + 557 + + + CF$UID + 558 + + + CF$UID + 559 + + + CF$UID + 560 + + + CF$UID + 561 + + + CF$UID + 562 + + + CF$UID + 563 + + + CF$UID + 564 + + + CF$UID + 565 + + + CF$UID + 566 + + + CF$UID + 567 + + + CF$UID + 568 + + + CF$UID + 569 + + + CF$UID + 570 + + + CF$UID + 571 + + + CF$UID + 572 + + + CF$UID + 573 + + + CF$UID + 574 + + + CF$UID + 575 + + + CF$UID + 576 + + + CF$UID + 577 + + + CF$UID + 578 + + + CF$UID + 579 + + + CF$UID + 580 + + + CF$UID + 581 + + + CF$UID + 582 + + + CF$UID + 583 + + + CF$UID + 584 + + + CF$UID + 585 + + + CF$UID + 586 + + + CF$UID + 587 + + + CF$UID + 588 + + + CF$UID + 589 + + + CF$UID + 590 + + + CF$UID + 591 + + + CF$UID + 592 + + + CF$UID + 593 + + + CF$UID + 594 + + + CF$UID + 595 + + + CF$UID + 596 + + + CF$UID + 597 + + + CF$UID + 598 + + + CF$UID + 599 + + + CF$UID + 600 + + + CF$UID + 601 + + + CF$UID + 602 + + + CF$UID + 603 + + + CF$UID + 604 + + + CF$UID + 605 + + + CF$UID + 606 + + + CF$UID + 607 + + + CF$UID + 608 + + + CF$UID + 609 + + + CF$UID + 610 + + + CF$UID + 611 + + + CF$UID + 612 + + + CF$UID + 613 + + + CF$UID + 614 + + + CF$UID + 615 + + + CF$UID + 616 + + + CF$UID + 617 + + + CF$UID + 618 + + + CF$UID + 619 + + + CF$UID + 620 + + + CF$UID + 621 + + + CF$UID + 622 + + + CF$UID + 623 + + + CF$UID + 624 + + + CF$UID + 625 + + + CF$UID + 626 + + + CF$UID + 627 + + + CF$UID + 628 + + + CF$UID + 629 + + + CF$UID + 630 + + + CF$UID + 631 + + + CF$UID + 632 + + + CF$UID + 633 + + + CF$UID + 634 + + + CF$UID + 635 + + + CF$UID + 636 + + + CF$UID + 637 + + + CF$UID + 638 + + + CF$UID + 639 + + + CF$UID + 640 + + + CF$UID + 641 + + + CF$UID + 642 + + + CF$UID + 643 + + + CF$UID + 644 + + + CF$UID + 645 + + + CF$UID + 646 + + + CF$UID + 647 + + + CF$UID + 648 + + + CF$UID + 649 + + + CF$UID + 650 + + + CF$UID + 651 + + + CF$UID + 652 + + + CF$UID + 653 + + + CF$UID + 654 + + + CF$UID + 655 + + + CF$UID + 656 + + + CF$UID + 657 + + + CF$UID + 658 + + + CF$UID + 659 + + + CF$UID + 660 + + + CF$UID + 661 + + + CF$UID + 662 + + + CF$UID + 663 + + + CF$UID + 664 + + + CF$UID + 665 + + + CF$UID + 666 + + + CF$UID + 667 + + + CF$UID + 668 + + + CF$UID + 669 + + + CF$UID + 670 + + + CF$UID + 671 + + + CF$UID + 672 + + + CF$UID