├── .gitignore ├── BUILDING.md ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── samples ├── barebone │ └── src │ │ ├── App-Info.plist │ │ ├── App-Prefix.pch │ │ ├── Barebone.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Game.h │ │ └── Game.m │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── main.m ├── demo │ ├── media │ │ ├── audio │ │ │ ├── music.aifc │ │ │ ├── sound0.caf │ │ │ ├── sound1.caf │ │ │ └── step.caf │ │ └── graphics │ │ │ ├── 1x │ │ │ ├── atlas.png │ │ │ ├── atlas.xml │ │ │ ├── background.jpg │ │ │ ├── benchmark_object.png │ │ │ ├── button_back.png │ │ │ ├── button_big.png │ │ │ ├── button_normal.png │ │ │ ├── button_square.png │ │ │ ├── desyrel.fnt │ │ │ ├── desyrel.png │ │ │ ├── logo.png │ │ │ ├── logo_rect.pvr │ │ │ ├── logo_rect.pvr.gz │ │ │ ├── logo_rect_tc.pvr │ │ │ ├── resolution.png │ │ │ ├── sparrow_front.png │ │ │ ├── sparrow_round.png │ │ │ └── sparrow_sheet.png │ │ │ └── 2x │ │ │ ├── atlas@2x.png │ │ │ ├── atlas@2x.xml │ │ │ ├── background@2x.jpg │ │ │ ├── benchmark_object@2x.png │ │ │ ├── button_back@2x.png │ │ │ ├── button_big@2x.png │ │ │ ├── button_normal@2x.png │ │ │ ├── button_square@2x.png │ │ │ ├── desyrel@2x.fnt │ │ │ ├── desyrel@2x.png │ │ │ ├── logo@2x.png │ │ │ ├── logo_rect@2x.pvr │ │ │ ├── logo_rect@2x.pvr.gz │ │ │ ├── logo_rect_tc@2x.pvr │ │ │ ├── resolution@2x.png │ │ │ ├── sparrow_front@2x.png │ │ │ ├── sparrow_round@2x.png │ │ │ └── sparrow_sheet@2x.png │ └── src │ │ ├── Classes │ │ ├── AnimationScene.h │ │ ├── AnimationScene.m │ │ ├── BenchmarkScene.h │ │ ├── BenchmarkScene.m │ │ ├── CustomHitTestScene.h │ │ ├── CustomHitTestScene.m │ │ ├── DemoAppDelegate.h │ │ ├── DemoAppDelegate.m │ │ ├── Game.h │ │ ├── Game.m │ │ ├── MovieScene.h │ │ ├── MovieScene.m │ │ ├── RenderTextureScene.h │ │ ├── RenderTextureScene.m │ │ ├── RoundButton.h │ │ ├── RoundButton.m │ │ ├── Scene.h │ │ ├── Scene.m │ │ ├── SoundScene.h │ │ ├── SoundScene.m │ │ ├── TextScene.h │ │ ├── TextScene.m │ │ ├── TextureScene.h │ │ ├── TextureScene.m │ │ ├── TouchScene.h │ │ ├── TouchScene.m │ │ ├── TouchSheet.h │ │ └── TouchSheet.m │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Demo-Info.plist │ │ ├── Demo.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── Demo_Prefix.pch │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── Icon@2x~ipad.png │ │ ├── Icon~ipad.png │ │ └── main.m └── scaffold │ ├── media │ ├── audio │ │ └── sound.caf │ └── graphics │ │ ├── 1x │ │ ├── atlas.png │ │ ├── atlas.xml │ │ └── background.jpg │ │ ├── 2x │ │ ├── atlas@2x.png │ │ ├── atlas@2x.xml │ │ └── background@2x.jpg │ │ └── 4x │ │ └── README.txt │ └── src │ ├── App-Info.plist │ ├── App-Prefix.pch │ ├── AppScaffold.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Game.h │ ├── Game.m │ ├── GameController.h │ ├── GameController.m │ ├── Media.h │ ├── Media.m │ ├── SPOverlayView.h │ ├── SPOverlayView.m │ ├── SPResizeEvent.h │ ├── SPResizeEvent.m │ ├── ViewController.h │ └── ViewController.m │ ├── Default-568h@2x.png │ ├── Default-Landscape~ipad.png │ ├── Default-Portrait~ipad.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon.png │ ├── Icon@2x.png │ ├── Icon@2x~ipad.png │ ├── Icon~ipad.png │ └── main.m └── sparrow ├── doc ├── .gitignore └── generate.sh ├── src ├── Classes │ ├── SPALSound.h │ ├── SPALSound.m │ ├── SPALSoundChannel.h │ ├── SPALSoundChannel.m │ ├── SPAVSound.h │ ├── SPAVSound.m │ ├── SPAVSoundChannel.h │ ├── SPAVSoundChannel.m │ ├── SPAnimatable.h │ ├── SPAudioEngine.h │ ├── SPAudioEngine.m │ ├── SPBitmapChar.h │ ├── SPBitmapChar.m │ ├── SPBitmapFont.h │ ├── SPBitmapFont.m │ ├── SPButton.h │ ├── SPButton.m │ ├── SPCompiledSprite.h │ ├── SPCompiledSprite.m │ ├── SPDelayedInvocation.h │ ├── SPDelayedInvocation.m │ ├── SPDisplayObject.h │ ├── SPDisplayObject.m │ ├── SPDisplayObjectContainer.h │ ├── SPDisplayObjectContainer.m │ ├── SPDisplayObject_Internal.h │ ├── SPEnterFrameEvent.h │ ├── SPEnterFrameEvent.m │ ├── SPEvent.h │ ├── SPEvent.m │ ├── SPEventDispatcher.h │ ├── SPEventDispatcher.m │ ├── SPEvent_Internal.h │ ├── SPGLTexture.h │ ├── SPGLTexture.m │ ├── SPImage.h │ ├── SPImage.m │ ├── SPJuggler.h │ ├── SPJuggler.m │ ├── SPMacros.h │ ├── SPMatrix.h │ ├── SPMatrix.m │ ├── SPMovieClip.h │ ├── SPMovieClip.m │ ├── SPNSExtensions.h │ ├── SPNSExtensions.m │ ├── SPPoint.h │ ├── SPPoint.m │ ├── SPPoolObject.h │ ├── SPPoolObject.m │ ├── SPQuad.h │ ├── SPQuad.m │ ├── SPRectangle.h │ ├── SPRectangle.m │ ├── SPRenderSupport.h │ ├── SPRenderSupport.m │ ├── SPRenderTexture.h │ ├── SPRenderTexture.m │ ├── SPRendering.m │ ├── SPSound.h │ ├── SPSound.m │ ├── SPSoundChannel.h │ ├── SPSoundChannel.m │ ├── SPSprite.h │ ├── SPSprite.m │ ├── SPStage.h │ ├── SPStage.m │ ├── SPStage_Internal.h │ ├── SPSubTexture.h │ ├── SPSubTexture.m │ ├── SPTextField.h │ ├── SPTextField.m │ ├── SPTextField_Internal.h │ ├── SPTexture.h │ ├── SPTexture.m │ ├── SPTextureAtlas.h │ ├── SPTextureAtlas.m │ ├── SPTouch.h │ ├── SPTouch.m │ ├── SPTouchEvent.h │ ├── SPTouchEvent.m │ ├── SPTouchProcessor.h │ ├── SPTouchProcessor.m │ ├── SPTouch_Internal.h │ ├── SPTransitions.h │ ├── SPTransitions.m │ ├── SPTween.h │ ├── SPTween.m │ ├── SPTweenedProperty.h │ ├── SPTweenedProperty.m │ ├── SPUtils.h │ ├── SPUtils.m │ ├── SPView.h │ ├── SPView.m │ └── Sparrow.h ├── Fixtures │ ├── image_idiom@2x~iphone.png │ ├── image_idiom~iphone.png │ ├── image_only_hd@2x.png │ ├── image_only_sd.png │ ├── pvrtc_image.pvr │ └── pvrtc_image@2x.pvr ├── Sparrow.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── UnitTests-Info.plist └── UnitTests │ ├── SPButtonTest.m │ ├── SPDelayedInvocationTest.m │ ├── SPDisplayObjectContainerTest.m │ ├── SPDisplayObjectTest.m │ ├── SPEventDispatcherTest.m │ ├── SPImageTest.m │ ├── SPJugglerTest.m │ ├── SPMacrosTest.m │ ├── SPMatrixTest.m │ ├── SPMovieClipTest.m │ ├── SPNSExtensionsTest.m │ ├── SPPointTest.m │ ├── SPPoolObjectTest.m │ ├── SPQuadTest.m │ ├── SPRectangleTest.m │ ├── SPStageTest.m │ ├── SPTweenTest.m │ └── SPUtilsTest.m └── util ├── atlas_generator ├── README └── generate_atlas.rb ├── hiero2sparrow ├── README └── hiero2sparrow.rb ├── packer2sparrow ├── README └── packer2sparrow.rb └── texture_scaler ├── README └── scale_textures.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/README.md -------------------------------------------------------------------------------- /samples/barebone/src/App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/barebone/src/App-Info.plist -------------------------------------------------------------------------------- /samples/barebone/src/App-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/barebone/src/App-Prefix.pch -------------------------------------------------------------------------------- /samples/barebone/src/Barebone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/barebone/src/Barebone.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/barebone/src/Barebone.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/barebone/src/Barebone.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/barebone/src/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/barebone/src/Classes/AppDelegate.h -------------------------------------------------------------------------------- /samples/barebone/src/Classes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/barebone/src/Classes/AppDelegate.m -------------------------------------------------------------------------------- /samples/barebone/src/Classes/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/barebone/src/Classes/Game.h -------------------------------------------------------------------------------- /samples/barebone/src/Classes/Game.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/barebone/src/Classes/Game.m -------------------------------------------------------------------------------- /samples/barebone/src/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/barebone/src/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/barebone/src/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/barebone/src/Default.png -------------------------------------------------------------------------------- /samples/barebone/src/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/barebone/src/Default@2x.png -------------------------------------------------------------------------------- /samples/barebone/src/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/barebone/src/main.m -------------------------------------------------------------------------------- /samples/demo/media/audio/music.aifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/audio/music.aifc -------------------------------------------------------------------------------- /samples/demo/media/audio/sound0.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/audio/sound0.caf -------------------------------------------------------------------------------- /samples/demo/media/audio/sound1.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/audio/sound1.caf -------------------------------------------------------------------------------- /samples/demo/media/audio/step.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/audio/step.caf -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/atlas.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/atlas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/atlas.xml -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/background.jpg -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/benchmark_object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/benchmark_object.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/button_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/button_back.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/button_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/button_big.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/button_normal.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/button_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/button_square.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/desyrel.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/desyrel.fnt -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/desyrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/desyrel.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/logo.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/logo_rect.pvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/logo_rect.pvr -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/logo_rect.pvr.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/logo_rect.pvr.gz -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/logo_rect_tc.pvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/logo_rect_tc.pvr -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/resolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/resolution.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/sparrow_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/sparrow_front.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/sparrow_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/sparrow_round.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/1x/sparrow_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/1x/sparrow_sheet.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/atlas@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/atlas@2x.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/atlas@2x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/atlas@2x.xml -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/background@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/background@2x.jpg -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/benchmark_object@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/benchmark_object@2x.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/button_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/button_back@2x.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/button_big@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/button_big@2x.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/button_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/button_normal@2x.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/button_square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/button_square@2x.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/desyrel@2x.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/desyrel@2x.fnt -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/desyrel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/desyrel@2x.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/logo@2x.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/logo_rect@2x.pvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/logo_rect@2x.pvr -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/logo_rect@2x.pvr.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/logo_rect@2x.pvr.gz -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/logo_rect_tc@2x.pvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/logo_rect_tc@2x.pvr -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/resolution@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/resolution@2x.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/sparrow_front@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/sparrow_front@2x.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/sparrow_round@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/sparrow_round@2x.png -------------------------------------------------------------------------------- /samples/demo/media/graphics/2x/sparrow_sheet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/media/graphics/2x/sparrow_sheet@2x.png -------------------------------------------------------------------------------- /samples/demo/src/Classes/AnimationScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/AnimationScene.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/AnimationScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/AnimationScene.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/BenchmarkScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/BenchmarkScene.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/BenchmarkScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/BenchmarkScene.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/CustomHitTestScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/CustomHitTestScene.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/CustomHitTestScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/CustomHitTestScene.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/DemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/DemoAppDelegate.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/DemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/DemoAppDelegate.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/Game.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/Game.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/Game.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/MovieScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/MovieScene.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/MovieScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/MovieScene.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/RenderTextureScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/RenderTextureScene.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/RenderTextureScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/RenderTextureScene.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/RoundButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/RoundButton.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/RoundButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/RoundButton.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/Scene.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/Scene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/Scene.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/SoundScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/SoundScene.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/SoundScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/SoundScene.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/TextScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/TextScene.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/TextScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/TextScene.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/TextureScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/TextureScene.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/TextureScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/TextureScene.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/TouchScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/TouchScene.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/TouchScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/TouchScene.m -------------------------------------------------------------------------------- /samples/demo/src/Classes/TouchSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/TouchSheet.h -------------------------------------------------------------------------------- /samples/demo/src/Classes/TouchSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Classes/TouchSheet.m -------------------------------------------------------------------------------- /samples/demo/src/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/demo/src/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Default.png -------------------------------------------------------------------------------- /samples/demo/src/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Default@2x.png -------------------------------------------------------------------------------- /samples/demo/src/Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Demo-Info.plist -------------------------------------------------------------------------------- /samples/demo/src/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/demo/src/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/demo/src/Demo_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Demo_Prefix.pch -------------------------------------------------------------------------------- /samples/demo/src/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Icon.png -------------------------------------------------------------------------------- /samples/demo/src/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Icon@2x.png -------------------------------------------------------------------------------- /samples/demo/src/Icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Icon@2x~ipad.png -------------------------------------------------------------------------------- /samples/demo/src/Icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/Icon~ipad.png -------------------------------------------------------------------------------- /samples/demo/src/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/demo/src/main.m -------------------------------------------------------------------------------- /samples/scaffold/media/audio/sound.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/media/audio/sound.caf -------------------------------------------------------------------------------- /samples/scaffold/media/graphics/1x/atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/media/graphics/1x/atlas.png -------------------------------------------------------------------------------- /samples/scaffold/media/graphics/1x/atlas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/media/graphics/1x/atlas.xml -------------------------------------------------------------------------------- /samples/scaffold/media/graphics/1x/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/media/graphics/1x/background.jpg -------------------------------------------------------------------------------- /samples/scaffold/media/graphics/2x/atlas@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/media/graphics/2x/atlas@2x.png -------------------------------------------------------------------------------- /samples/scaffold/media/graphics/2x/atlas@2x.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/media/graphics/2x/atlas@2x.xml -------------------------------------------------------------------------------- /samples/scaffold/media/graphics/2x/background@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/media/graphics/2x/background@2x.jpg -------------------------------------------------------------------------------- /samples/scaffold/media/graphics/4x/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/media/graphics/4x/README.txt -------------------------------------------------------------------------------- /samples/scaffold/src/App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/App-Info.plist -------------------------------------------------------------------------------- /samples/scaffold/src/App-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/App-Prefix.pch -------------------------------------------------------------------------------- /samples/scaffold/src/AppScaffold.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/AppScaffold.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/scaffold/src/AppScaffold.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/AppScaffold.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/AppDelegate.h -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/AppDelegate.m -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/Game.h -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/Game.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/Game.m -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/GameController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/GameController.h -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/GameController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/GameController.m -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/Media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/Media.h -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/Media.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/Media.m -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/SPOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/SPOverlayView.h -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/SPOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/SPOverlayView.m -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/SPResizeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/SPResizeEvent.h -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/SPResizeEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/SPResizeEvent.m -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/ViewController.h -------------------------------------------------------------------------------- /samples/scaffold/src/Classes/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Classes/ViewController.m -------------------------------------------------------------------------------- /samples/scaffold/src/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/scaffold/src/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /samples/scaffold/src/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /samples/scaffold/src/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Default.png -------------------------------------------------------------------------------- /samples/scaffold/src/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Default@2x.png -------------------------------------------------------------------------------- /samples/scaffold/src/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Icon.png -------------------------------------------------------------------------------- /samples/scaffold/src/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Icon@2x.png -------------------------------------------------------------------------------- /samples/scaffold/src/Icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Icon@2x~ipad.png -------------------------------------------------------------------------------- /samples/scaffold/src/Icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/Icon~ipad.png -------------------------------------------------------------------------------- /samples/scaffold/src/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/samples/scaffold/src/main.m -------------------------------------------------------------------------------- /sparrow/doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/doc/.gitignore -------------------------------------------------------------------------------- /sparrow/doc/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/doc/generate.sh -------------------------------------------------------------------------------- /sparrow/src/Classes/SPALSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPALSound.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPALSound.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPALSound.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPALSoundChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPALSoundChannel.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPALSoundChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPALSoundChannel.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPAVSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPAVSound.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPAVSound.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPAVSound.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPAVSoundChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPAVSoundChannel.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPAVSoundChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPAVSoundChannel.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPAnimatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPAnimatable.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPAudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPAudioEngine.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPAudioEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPAudioEngine.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPBitmapChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPBitmapChar.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPBitmapChar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPBitmapChar.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPBitmapFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPBitmapFont.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPBitmapFont.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPBitmapFont.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPButton.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPButton.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPCompiledSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPCompiledSprite.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPCompiledSprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPCompiledSprite.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPDelayedInvocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPDelayedInvocation.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPDelayedInvocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPDelayedInvocation.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPDisplayObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPDisplayObject.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPDisplayObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPDisplayObject.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPDisplayObjectContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPDisplayObjectContainer.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPDisplayObjectContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPDisplayObjectContainer.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPDisplayObject_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPDisplayObject_Internal.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPEnterFrameEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPEnterFrameEvent.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPEnterFrameEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPEnterFrameEvent.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPEvent.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPEvent.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPEventDispatcher.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPEventDispatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPEventDispatcher.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPEvent_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPEvent_Internal.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPGLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPGLTexture.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPGLTexture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPGLTexture.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPImage.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPImage.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPJuggler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPJuggler.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPJuggler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPJuggler.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPMacros.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPMatrix.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPMatrix.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPMovieClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPMovieClip.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPMovieClip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPMovieClip.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPNSExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPNSExtensions.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPNSExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPNSExtensions.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPPoint.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPPoint.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPPoolObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPPoolObject.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPPoolObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPPoolObject.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPQuad.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPQuad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPQuad.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPRectangle.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPRectangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPRectangle.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPRenderSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPRenderSupport.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPRenderSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPRenderSupport.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPRenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPRenderTexture.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPRenderTexture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPRenderTexture.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPRendering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPRendering.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPSound.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPSound.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPSound.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPSoundChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPSoundChannel.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPSoundChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPSoundChannel.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPSprite.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPSprite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPSprite.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPStage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPStage.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPStage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPStage.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPStage_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPStage_Internal.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPSubTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPSubTexture.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPSubTexture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPSubTexture.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTextField.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTextField.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTextField_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTextField_Internal.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTexture.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTexture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTexture.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTextureAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTextureAtlas.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTextureAtlas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTextureAtlas.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTouch.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTouch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTouch.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTouchEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTouchEvent.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTouchEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTouchEvent.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTouchProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTouchProcessor.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTouchProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTouchProcessor.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTouch_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTouch_Internal.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTransitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTransitions.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTransitions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTransitions.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTween.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTween.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTween.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTweenedProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTweenedProperty.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPTweenedProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPTweenedProperty.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPUtils.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPUtils.m -------------------------------------------------------------------------------- /sparrow/src/Classes/SPView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPView.h -------------------------------------------------------------------------------- /sparrow/src/Classes/SPView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/SPView.m -------------------------------------------------------------------------------- /sparrow/src/Classes/Sparrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Classes/Sparrow.h -------------------------------------------------------------------------------- /sparrow/src/Fixtures/image_idiom@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Fixtures/image_idiom@2x~iphone.png -------------------------------------------------------------------------------- /sparrow/src/Fixtures/image_idiom~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Fixtures/image_idiom~iphone.png -------------------------------------------------------------------------------- /sparrow/src/Fixtures/image_only_hd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Fixtures/image_only_hd@2x.png -------------------------------------------------------------------------------- /sparrow/src/Fixtures/image_only_sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Fixtures/image_only_sd.png -------------------------------------------------------------------------------- /sparrow/src/Fixtures/pvrtc_image.pvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Fixtures/pvrtc_image.pvr -------------------------------------------------------------------------------- /sparrow/src/Fixtures/pvrtc_image@2x.pvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Fixtures/pvrtc_image@2x.pvr -------------------------------------------------------------------------------- /sparrow/src/Sparrow.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Sparrow.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sparrow/src/Sparrow.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/Sparrow.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sparrow/src/UnitTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests-Info.plist -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPButtonTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPButtonTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPDelayedInvocationTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPDelayedInvocationTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPDisplayObjectContainerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPDisplayObjectContainerTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPDisplayObjectTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPDisplayObjectTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPEventDispatcherTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPEventDispatcherTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPImageTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPImageTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPJugglerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPJugglerTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPMacrosTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPMacrosTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPMatrixTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPMatrixTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPMovieClipTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPMovieClipTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPNSExtensionsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPNSExtensionsTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPPointTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPPointTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPPoolObjectTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPPoolObjectTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPQuadTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPQuadTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPRectangleTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPRectangleTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPStageTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPStageTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPTweenTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPTweenTest.m -------------------------------------------------------------------------------- /sparrow/src/UnitTests/SPUtilsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/src/UnitTests/SPUtilsTest.m -------------------------------------------------------------------------------- /sparrow/util/atlas_generator/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/util/atlas_generator/README -------------------------------------------------------------------------------- /sparrow/util/atlas_generator/generate_atlas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/util/atlas_generator/generate_atlas.rb -------------------------------------------------------------------------------- /sparrow/util/hiero2sparrow/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/util/hiero2sparrow/README -------------------------------------------------------------------------------- /sparrow/util/hiero2sparrow/hiero2sparrow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/util/hiero2sparrow/hiero2sparrow.rb -------------------------------------------------------------------------------- /sparrow/util/packer2sparrow/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/util/packer2sparrow/README -------------------------------------------------------------------------------- /sparrow/util/packer2sparrow/packer2sparrow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/util/packer2sparrow/packer2sparrow.rb -------------------------------------------------------------------------------- /sparrow/util/texture_scaler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/util/texture_scaler/README -------------------------------------------------------------------------------- /sparrow/util/texture_scaler/scale_textures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrimaryFeather/Sparrow-Framework/HEAD/sparrow/util/texture_scaler/scale_textures.rb --------------------------------------------------------------------------------