├── .gitignore ├── AirHockey ├── README.md └── src │ ├── AirHockey.WP8.sln │ ├── AirHockey.Win8.sln │ ├── AirHockey.sln │ ├── Common │ ├── GameSprite.cs │ └── IntroLayer.cs │ ├── Content │ ├── basic │ │ ├── court.png │ │ ├── logo.png │ │ ├── mallet.png │ │ ├── puck.png │ │ └── sounds │ │ │ ├── hit.wav │ │ │ ├── hit.xnb │ │ │ ├── score.wav │ │ │ └── score.xnb │ └── wp8 │ │ ├── court.xnb │ │ ├── logo.xnb │ │ ├── mallet.xnb │ │ ├── puck.xnb │ │ └── sounds │ │ ├── hit.xnb │ │ └── score.xnb │ ├── win32 │ ├── AirHockey.Windows.csproj │ ├── AppDelegate.cs │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── Game.ico │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── win8 │ ├── AirHockey.Store.csproj │ ├── AppDelegate.cs │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── Package.appxmanifest │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ └── wp8 │ ├── AirHockey.WP8.csproj │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppDelegate.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Content │ └── fonts │ │ └── MarkerFelt-22.xnb │ ├── GamePage.xaml │ ├── GamePage.xaml.cs │ ├── LocalizedStrings.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ └── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx ├── AngryNinjas └── src │ ├── AngryNinjas-Mac.sln │ ├── AngryNinjas.sln │ ├── AngryNinjas │ ├── AngryNinjas.csproj │ ├── AppDelegate.cs │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── Extensions │ │ └── CCDraw.cs │ ├── Package.appxmanifest │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs │ ├── AngryNinjasWP8.sln │ ├── AngryNinjasWin8.sln │ ├── Common │ ├── AppDelegate.cs │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── Custom │ │ ├── Constants.cs │ │ ├── CustomAnimation.cs │ │ ├── GameData.cs │ │ └── GameSounds.cs │ ├── Entities │ │ ├── BodyNode.cs │ │ ├── Enemy.cs │ │ ├── Ninja.cs │ │ ├── StackObject.cs │ │ ├── StartPlatform.cs │ │ └── TheStack.cs │ ├── Layers │ │ ├── GroundPlane.cs │ │ └── TheMenu.cs │ ├── Levels │ │ ├── IntroLayer.cs │ │ └── TheLevel.cs │ ├── Listeners │ │ └── ContactListener.cs │ └── Program.cs │ ├── Extensions │ └── CCDraw.cs │ ├── Resources │ ├── ios │ │ ├── 10000points-hd.png │ │ ├── 10000points.png │ │ ├── 1000points-hd.png │ │ ├── 1000points.png │ │ ├── 100points-hd.png │ │ ├── 100points.png │ │ ├── 5000points-hd.png │ │ ├── 5000points.png │ │ ├── 500points-hd.png │ │ ├── 500points.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default.png │ │ ├── Default_hd.png │ │ ├── Default_ipad.png │ │ ├── Icon-144.png │ │ ├── Icon-72.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── IntroLayer-hd.png │ │ ├── IntroLayer-ipad.png │ │ ├── IntroLayer-ipadhd.png │ │ ├── IntroLayer.png │ │ ├── Sounds │ │ │ ├── birds.mp3 │ │ │ ├── birds.wma │ │ │ ├── birds.xnb │ │ │ ├── bloop.wav │ │ │ ├── break1.wav │ │ │ ├── break2.wav │ │ │ ├── break3.wav │ │ │ ├── drums.wav │ │ │ ├── frogs.mp3 │ │ │ ├── frogs.wma │ │ │ ├── frogs.xnb │ │ │ ├── gong.wav │ │ │ ├── grunt1.wav │ │ │ ├── grunt2.wav │ │ │ ├── grunt3.wav │ │ │ ├── grunt4.wav │ │ │ ├── grunt5.wav │ │ │ ├── grunt6.wav │ │ │ ├── grunt7.wav │ │ │ ├── grunt8.wav │ │ │ ├── impact1.wav │ │ │ ├── impact2.wav │ │ │ ├── impact3.wav │ │ │ ├── impact4.wav │ │ │ ├── impact5.wav │ │ │ └── whoosh.wav │ │ ├── ambientFX-hd.png │ │ ├── ambientFX-ipad-hd.png │ │ ├── ambientFX-ipad.png │ │ ├── ambientFX.png │ │ ├── ambientFX_dim-hd.png │ │ ├── ambientFX_dim-ipad-hd.png │ │ ├── ambientFX_dim-ipad.png │ │ ├── ambientFX_dim.png │ │ ├── background_clouds-hd.png │ │ ├── background_clouds.png │ │ ├── background_hills-hd.png │ │ ├── background_hills.png │ │ ├── blocks-ipad.png │ │ ├── blocks.png │ │ ├── circle-hd.png │ │ ├── circle.png │ │ ├── circleShape-hd.png │ │ ├── circleShape.png │ │ ├── explosion_0001-hd.png │ │ ├── explosion_0001.png │ │ ├── explosion_0002-hd.png │ │ ├── explosion_0002.png │ │ ├── explosion_0003-hd.png │ │ ├── explosion_0003.png │ │ ├── explosion_0004-hd.png │ │ ├── explosion_0004.png │ │ ├── explosion_0005-hd.png │ │ ├── explosion_0005.png │ │ ├── explosion_0006-hd.png │ │ ├── explosion_0006.png │ │ ├── explosion_0007-hd.png │ │ ├── explosion_0007.png │ │ ├── explosion_0008-hd.png │ │ ├── explosion_0008.png │ │ ├── explosion_0009-hd.png │ │ ├── explosion_0009.png │ │ ├── explosion_0010-hd.png │ │ ├── explosion_0010.png │ │ ├── explosion_0011-hd.png │ │ ├── explosion_0011.png │ │ ├── fire.png │ │ ├── fonts │ │ │ ├── MarkerFelt-16.xnb │ │ │ ├── MarkerFelt-18.xnb │ │ │ └── MarkerFelt-22.xnb │ │ ├── fps_images-hd.png │ │ ├── fps_images-ipadhd.png │ │ ├── fps_images.png │ │ ├── gameMenu-hd.png │ │ ├── gameMenu-ipad.png │ │ ├── gameMenu.png │ │ ├── grid_example.png │ │ ├── ground_plane-hd.png │ │ ├── ground_plane.png │ │ ├── hexagonShape-hd.png │ │ ├── hexagonShape.png │ │ ├── hexagonShape2-hd.png │ │ ├── hexagonShape2.png │ │ ├── levelButton1-hd.png │ │ ├── levelButton1-ipad-hd.png │ │ ├── levelButton1-ipad.png │ │ ├── levelButton1.png │ │ ├── levelButton10-hd.png │ │ ├── levelButton10-ipad-hd.png │ │ ├── levelButton10-ipad.png │ │ ├── levelButton10.png │ │ ├── levelButton10_locked-hd.png │ │ ├── levelButton10_locked-ipad-hd.png │ │ ├── levelButton10_locked-ipad.png │ │ ├── levelButton10_locked.png │ │ ├── levelButton2-hd.png │ │ ├── levelButton2-ipad-hd.png │ │ ├── levelButton2-ipad.png │ │ ├── levelButton2.png │ │ ├── levelButton2_locked-hd.png │ │ ├── levelButton2_locked-ipad-hd.png │ │ ├── levelButton2_locked-ipad.png │ │ ├── levelButton2_locked.png │ │ ├── levelButton3-hd.png │ │ ├── levelButton3-ipad-hd.png │ │ ├── levelButton3-ipad.png │ │ ├── levelButton3.png │ │ ├── levelButton3_locked-hd.png │ │ ├── levelButton3_locked-ipad-hd.png │ │ ├── levelButton3_locked-ipad.png │ │ ├── levelButton3_locked.png │ │ ├── levelButton4-hd.png │ │ ├── levelButton4-ipad-hd.png │ │ ├── levelButton4-ipad.png │ │ ├── levelButton4.png │ │ ├── levelButton4_locked-hd.png │ │ ├── levelButton4_locked-ipad-hd.png │ │ ├── levelButton4_locked-ipad.png │ │ ├── levelButton4_locked.png │ │ ├── levelButton5-hd.png │ │ ├── levelButton5-ipad-hd.png │ │ ├── levelButton5-ipad.png │ │ ├── levelButton5.png │ │ ├── levelButton5_locked-hd.png │ │ ├── levelButton5_locked-ipad-hd.png │ │ ├── levelButton5_locked-ipad.png │ │ ├── levelButton5_locked.png │ │ ├── levelButton6-hd.png │ │ ├── levelButton6-ipad-hd.png │ │ ├── levelButton6-ipad.png │ │ ├── levelButton6.png │ │ ├── levelButton6_locked-hd.png │ │ ├── levelButton6_locked-ipad-hd.png │ │ ├── levelButton6_locked-ipad.png │ │ ├── levelButton6_locked.png │ │ ├── levelButton7-hd.png │ │ ├── levelButton7-ipad-hd.png │ │ ├── levelButton7-ipad.png │ │ ├── levelButton7.png │ │ ├── levelButton7_locked-hd.png │ │ ├── levelButton7_locked-ipad-hd.png │ │ ├── levelButton7_locked-ipad.png │ │ ├── levelButton7_locked.png │ │ ├── levelButton8-hd.png │ │ ├── levelButton8-ipad-hd.png │ │ ├── levelButton8-ipad.png │ │ ├── levelButton8.png │ │ ├── levelButton8_locked-hd.png │ │ ├── levelButton8_locked-ipad-hd.png │ │ ├── levelButton8_locked-ipad.png │ │ ├── levelButton8_locked.png │ │ ├── levelButton9-hd.png │ │ ├── levelButton9-ipad-hd.png │ │ ├── levelButton9-ipad.png │ │ ├── levelButton9.png │ │ ├── levelButton9_locked-hd.png │ │ ├── levelButton9_locked-ipad-hd.png │ │ ├── levelButton9_locked-ipad.png │ │ ├── levelButton9_locked.png │ │ ├── levelLocked-hd.png │ │ ├── levelLocked-ipad.png │ │ ├── levelLocked.png │ │ ├── marbleSquare-hd.png │ │ ├── marbleSquare.png │ │ ├── menu_background-hd.png │ │ ├── menu_background-ipad-hd.png │ │ ├── menu_background-ipad.png │ │ ├── menu_background.png │ │ ├── mutantPepper-hd.png │ │ ├── mutantPepper.png │ │ ├── mutantPepper_blink-hd.png │ │ ├── mutantPepper_blink.png │ │ ├── mutantPepper_break0001-hd.png │ │ ├── mutantPepper_break0001.png │ │ ├── mutantPepper_break0002-hd.png │ │ ├── mutantPepper_break0002.png │ │ ├── mutantPepper_break0003-hd.png │ │ ├── mutantPepper_break0003.png │ │ ├── mutantPepper_break0004-hd.png │ │ ├── mutantPepper_break0004.png │ │ ├── mutantPepper_break0005-hd.png │ │ ├── mutantPepper_break0005.png │ │ ├── mutantPepper_break0006-hd.png │ │ ├── mutantPepper_break0006.png │ │ ├── mutantPepper_break0007-hd.png │ │ ├── mutantPepper_break0007.png │ │ ├── mutantPepper_break0008-hd.png │ │ ├── mutantPepper_break0008.png │ │ ├── mutantPepper_break0009-hd.png │ │ ├── mutantPepper_break0009.png │ │ ├── mutantPepper_break0010-hd.png │ │ ├── mutantPepper_break0010.png │ │ ├── mutantPepper_damage1-hd.png │ │ ├── mutantPepper_damage1.png │ │ ├── mutantPepper_damage2-hd.png │ │ ├── mutantPepper_damage2.png │ │ ├── mutantPepper_damage3-hd.png │ │ ├── mutantPepper_damage3.png │ │ ├── ninjaBlue_air-hd.png │ │ ├── ninjaBlue_air.png │ │ ├── ninjaBlue_blink-hd.png │ │ ├── ninjaBlue_blink.png │ │ ├── ninjaBlue_in_sling-hd.png │ │ ├── ninjaBlue_in_sling.png │ │ ├── ninjaBlue_on_ground-hd.png │ │ ├── ninjaBlue_on_ground.png │ │ ├── ninjaBlue_roll-hd.png │ │ ├── ninjaBlue_roll.png │ │ ├── ninjaBlue_roll0001-hd.png │ │ ├── ninjaBlue_roll0001.png │ │ ├── ninjaBlue_roll0002-hd.png │ │ ├── ninjaBlue_roll0002.png │ │ ├── ninjaBlue_roll0003-hd.png │ │ ├── ninjaBlue_roll0003.png │ │ ├── ninjaBlue_standing-hd.png │ │ ├── ninjaBlue_standing.png │ │ ├── ninjaBrown_air-hd.png │ │ ├── ninjaBrown_air.png │ │ ├── ninjaBrown_blink-hd.png │ │ ├── ninjaBrown_blink.png │ │ ├── ninjaBrown_in_sling-hd.png │ │ ├── ninjaBrown_in_sling.png │ │ ├── ninjaBrown_on_ground-hd.png │ │ ├── ninjaBrown_on_ground.png │ │ ├── ninjaBrown_roll-hd.png │ │ ├── ninjaBrown_roll.png │ │ ├── ninjaBrown_roll0001-hd.png │ │ ├── ninjaBrown_roll0001.png │ │ ├── ninjaBrown_roll0002-hd.png │ │ ├── ninjaBrown_roll0002.png │ │ ├── ninjaBrown_roll0003-hd.png │ │ ├── ninjaBrown_roll0003.png │ │ ├── ninjaBrown_standing-hd.png │ │ ├── ninjaBrown_standing.png │ │ ├── ninjaGreen_air-hd.png │ │ ├── ninjaGreen_air.png │ │ ├── ninjaGreen_blink-hd.png │ │ ├── ninjaGreen_blink.png │ │ ├── ninjaGreen_in_sling-hd.png │ │ ├── ninjaGreen_in_sling.png │ │ ├── ninjaGreen_on_ground-hd.png │ │ ├── ninjaGreen_on_ground.png │ │ ├── ninjaGreen_roll-hd.png │ │ ├── ninjaGreen_roll.png │ │ ├── ninjaGreen_roll0001-hd.png │ │ ├── ninjaGreen_roll0001.png │ │ ├── ninjaGreen_roll0002-hd.png │ │ ├── ninjaGreen_roll0002.png │ │ ├── ninjaGreen_roll0003-hd.png │ │ ├── ninjaGreen_roll0003.png │ │ ├── ninjaGreen_standing-hd.png │ │ ├── ninjaGreen_standing.png │ │ ├── ninjaRed_air-hd.png │ │ ├── ninjaRed_air.png │ │ ├── ninjaRed_blink-hd.png │ │ ├── ninjaRed_blink.png │ │ ├── ninjaRed_in_sling-hd.png │ │ ├── ninjaRed_in_sling.png │ │ ├── ninjaRed_on_ground-hd.png │ │ ├── ninjaRed_on_ground.png │ │ ├── ninjaRed_roll-hd.png │ │ ├── ninjaRed_roll.png │ │ ├── ninjaRed_roll0001-hd.png │ │ ├── ninjaRed_roll0001.png │ │ ├── ninjaRed_roll0002-hd.png │ │ ├── ninjaRed_roll0002.png │ │ ├── ninjaRed_roll0003-hd.png │ │ ├── ninjaRed_roll0003.png │ │ ├── ninjaRed_standing-hd.png │ │ ├── ninjaRed_standing.png │ │ ├── ninja_air-hd.png │ │ ├── ninja_air.png │ │ ├── ninja_blink-hd.png │ │ ├── ninja_blink.png │ │ ├── ninja_in_sling-hd.png │ │ ├── ninja_in_sling.png │ │ ├── ninja_on_ground-hd.png │ │ ├── ninja_on_ground.png │ │ ├── ninja_roll-hd.png │ │ ├── ninja_roll.png │ │ ├── ninja_roll0001-hd.png │ │ ├── ninja_roll0001.png │ │ ├── ninja_roll0002-hd.png │ │ ├── ninja_roll0002.png │ │ ├── ninja_roll0003-hd.png │ │ ├── ninja_roll0003.png │ │ ├── ninja_standing-hd.png │ │ ├── ninja_standing.png │ │ ├── octogonShape-hd.png │ │ ├── octogonShape.png │ │ ├── parallelogram-hd.png │ │ ├── parallelogram.png │ │ ├── parallelogram2-hd.png │ │ ├── parallelogram2.png │ │ ├── pentagon-hd.png │ │ ├── pentagon.png │ │ ├── platform-hd.png │ │ ├── platform.png │ │ ├── puffs_0001-hd.png │ │ ├── puffs_0001.png │ │ ├── puffs_0002-hd.png │ │ ├── puffs_0002.png │ │ ├── puffs_0003-hd.png │ │ ├── puffs_0003.png │ │ ├── puffs_0004-hd.png │ │ ├── puffs_0004.png │ │ ├── puffs_0005-hd.png │ │ ├── puffs_0005.png │ │ ├── puffs_0006-hd.png │ │ ├── puffs_0006.png │ │ ├── puffs_0007-hd.png │ │ ├── puffs_0007.png │ │ ├── slingshot_front-hd.png │ │ ├── slingshot_front.png │ │ ├── soundFX-hd.png │ │ ├── soundFX-ipad-hd.png │ │ ├── soundFX-ipad.png │ │ ├── soundFX.png │ │ ├── soundFX_dim-hd.png │ │ ├── soundFX_dim-ipad-hd.png │ │ ├── soundFX_dim-ipad.png │ │ ├── soundFX_dim.png │ │ ├── stonePillar-hd.png │ │ ├── stonePillar.png │ │ ├── strap-hd.png │ │ ├── strap.png │ │ ├── strapBack-hd.png │ │ ├── strapBack.png │ │ ├── strapEmpty-hd.png │ │ ├── strapEmpty.png │ │ ├── trapezoid-hd.png │ │ ├── trapezoid.png │ │ ├── trapezoid2-hd.png │ │ ├── trapezoid2.png │ │ ├── triangleLarge-hd.png │ │ ├── triangleLarge.png │ │ ├── triangleMedium-hd.png │ │ ├── triangleMedium.png │ │ ├── triangleRightAngle-hd.png │ │ ├── triangleRightAngle.png │ │ ├── triangleSmall-hd.png │ │ ├── triangleSmall.png │ │ ├── triangleTall-hd.png │ │ ├── triangleTall.png │ │ ├── voiceFX-hd.png │ │ ├── voiceFX-ipad-hd.png │ │ ├── voiceFX-ipad.png │ │ ├── voiceFX.png │ │ ├── voiceFX_dim-hd.png │ │ ├── voiceFX_dim-ipad-hd.png │ │ ├── voiceFX_dim-ipad.png │ │ ├── voiceFX_dim.png │ │ ├── woodShape1-hd.png │ │ ├── woodShape1.png │ │ ├── woodShape1_0001-hd.png │ │ ├── woodShape1_0001.png │ │ ├── woodShape1_0002-hd.png │ │ ├── woodShape1_0002.png │ │ ├── woodShape1_0003-hd.png │ │ ├── woodShape1_0003.png │ │ ├── woodShape1_0004-hd.png │ │ ├── woodShape1_0004.png │ │ ├── woodShape1_0005-hd.png │ │ ├── woodShape1_0005.png │ │ ├── woodShape1_0006-hd.png │ │ ├── woodShape1_0006.png │ │ ├── woodShape1_0007-hd.png │ │ ├── woodShape1_0007.png │ │ ├── woodShape1_0008-hd.png │ │ ├── woodShape1_0008.png │ │ ├── woodShape1_0009-hd.png │ │ ├── woodShape1_0009.png │ │ ├── woodShape1_0010-hd.png │ │ ├── woodShape1_0010.png │ │ ├── woodShape2-hd.png │ │ ├── woodShape2.png │ │ ├── woodShape3-hd.png │ │ ├── woodShape3.png │ │ ├── woodShape4-hd.png │ │ └── woodShape4.png │ ├── win32 │ │ ├── 10000points-hd.png │ │ ├── 10000points.png │ │ ├── 1000points-hd.png │ │ ├── 1000points.png │ │ ├── 100points-hd.png │ │ ├── 100points.png │ │ ├── 5000points-hd.png │ │ ├── 5000points.png │ │ ├── 500points-hd.png │ │ ├── 500points.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default.png │ │ ├── Default_hd.png │ │ ├── Default_ipad.png │ │ ├── Icon-144.png │ │ ├── Icon-72.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── IntroLayer-hd.png │ │ ├── IntroLayer-ipad.png │ │ ├── IntroLayer-ipadhd.png │ │ ├── IntroLayer.png │ │ ├── Sounds │ │ │ ├── birds.wma │ │ │ ├── birds.xnb │ │ │ ├── bloop.xnb │ │ │ ├── break1.xnb │ │ │ ├── break2.xnb │ │ │ ├── break3.xnb │ │ │ ├── drums.xnb │ │ │ ├── frogs.wma │ │ │ ├── frogs.xnb │ │ │ ├── gong.xnb │ │ │ ├── grunt1.xnb │ │ │ ├── grunt2.xnb │ │ │ ├── grunt3.xnb │ │ │ ├── grunt4.xnb │ │ │ ├── grunt5.xnb │ │ │ ├── grunt6.xnb │ │ │ ├── grunt7.xnb │ │ │ ├── grunt8.xnb │ │ │ ├── impact1.xnb │ │ │ ├── impact2.xnb │ │ │ ├── impact3.xnb │ │ │ ├── impact4.xnb │ │ │ ├── impact5.xnb │ │ │ └── whoosh.xnb │ │ ├── ambientFX-hd.png │ │ ├── ambientFX-ipad-hd.png │ │ ├── ambientFX-ipad.png │ │ ├── ambientFX.png │ │ ├── ambientFX_dim-hd.png │ │ ├── ambientFX_dim-ipad-hd.png │ │ ├── ambientFX_dim-ipad.png │ │ ├── ambientFX_dim.png │ │ ├── background_clouds-hd.png │ │ ├── background_clouds.png │ │ ├── background_hills-hd.png │ │ ├── background_hills.png │ │ ├── blocks-ipad.png │ │ ├── blocks.png │ │ ├── circle-hd.png │ │ ├── circle.png │ │ ├── circleShape-hd.png │ │ ├── circleShape.png │ │ ├── explosion_0001-hd.png │ │ ├── explosion_0001.png │ │ ├── explosion_0002-hd.png │ │ ├── explosion_0002.png │ │ ├── explosion_0003-hd.png │ │ ├── explosion_0003.png │ │ ├── explosion_0004-hd.png │ │ ├── explosion_0004.png │ │ ├── explosion_0005-hd.png │ │ ├── explosion_0005.png │ │ ├── explosion_0006-hd.png │ │ ├── explosion_0006.png │ │ ├── explosion_0007-hd.png │ │ ├── explosion_0007.png │ │ ├── explosion_0008-hd.png │ │ ├── explosion_0008.png │ │ ├── explosion_0009-hd.png │ │ ├── explosion_0009.png │ │ ├── explosion_0010-hd.png │ │ ├── explosion_0010.png │ │ ├── explosion_0011-hd.png │ │ ├── explosion_0011.png │ │ ├── fire.png │ │ ├── fonts │ │ │ ├── MarkerFelt-16.xnb │ │ │ ├── MarkerFelt-18.xnb │ │ │ └── MarkerFelt-22.xnb │ │ ├── fps_images-hd.png │ │ ├── fps_images-ipadhd.png │ │ ├── fps_images.png │ │ ├── gameMenu-hd.png │ │ ├── gameMenu-ipad.png │ │ ├── gameMenu.png │ │ ├── grid_example.png │ │ ├── ground_plane-hd.png │ │ ├── ground_plane.png │ │ ├── hexagonShape-hd.png │ │ ├── hexagonShape.png │ │ ├── hexagonShape2-hd.png │ │ ├── hexagonShape2.png │ │ ├── levelButton1-hd.png │ │ ├── levelButton1-ipad-hd.png │ │ ├── levelButton1-ipad.png │ │ ├── levelButton1.png │ │ ├── levelButton10-hd.png │ │ ├── levelButton10-ipad-hd.png │ │ ├── levelButton10-ipad.png │ │ ├── levelButton10.png │ │ ├── levelButton10_locked-hd.png │ │ ├── levelButton10_locked-ipad-hd.png │ │ ├── levelButton10_locked-ipad.png │ │ ├── levelButton10_locked.png │ │ ├── levelButton2-hd.png │ │ ├── levelButton2-ipad-hd.png │ │ ├── levelButton2-ipad.png │ │ ├── levelButton2.png │ │ ├── levelButton2_locked-hd.png │ │ ├── levelButton2_locked-ipad-hd.png │ │ ├── levelButton2_locked-ipad.png │ │ ├── levelButton2_locked.png │ │ ├── levelButton3-hd.png │ │ ├── levelButton3-ipad-hd.png │ │ ├── levelButton3-ipad.png │ │ ├── levelButton3.png │ │ ├── levelButton3_locked-hd.png │ │ ├── levelButton3_locked-ipad-hd.png │ │ ├── levelButton3_locked-ipad.png │ │ ├── levelButton3_locked.png │ │ ├── levelButton4-hd.png │ │ ├── levelButton4-ipad-hd.png │ │ ├── levelButton4-ipad.png │ │ ├── levelButton4.png │ │ ├── levelButton4_locked-hd.png │ │ ├── levelButton4_locked-ipad-hd.png │ │ ├── levelButton4_locked-ipad.png │ │ ├── levelButton4_locked.png │ │ ├── levelButton5-hd.png │ │ ├── levelButton5-ipad-hd.png │ │ ├── levelButton5-ipad.png │ │ ├── levelButton5.png │ │ ├── levelButton5_locked-hd.png │ │ ├── levelButton5_locked-ipad-hd.png │ │ ├── levelButton5_locked-ipad.png │ │ ├── levelButton5_locked.png │ │ ├── levelButton6-hd.png │ │ ├── levelButton6-ipad-hd.png │ │ ├── levelButton6-ipad.png │ │ ├── levelButton6.png │ │ ├── levelButton6_locked-hd.png │ │ ├── levelButton6_locked-ipad-hd.png │ │ ├── levelButton6_locked-ipad.png │ │ ├── levelButton6_locked.png │ │ ├── levelButton7-hd.png │ │ ├── levelButton7-ipad-hd.png │ │ ├── levelButton7-ipad.png │ │ ├── levelButton7.png │ │ ├── levelButton7_locked-hd.png │ │ ├── levelButton7_locked-ipad-hd.png │ │ ├── levelButton7_locked-ipad.png │ │ ├── levelButton7_locked.png │ │ ├── levelButton8-hd.png │ │ ├── levelButton8-ipad-hd.png │ │ ├── levelButton8-ipad.png │ │ ├── levelButton8.png │ │ ├── levelButton8_locked-hd.png │ │ ├── levelButton8_locked-ipad-hd.png │ │ ├── levelButton8_locked-ipad.png │ │ ├── levelButton8_locked.png │ │ ├── levelButton9-hd.png │ │ ├── levelButton9-ipad-hd.png │ │ ├── levelButton9-ipad.png │ │ ├── levelButton9.png │ │ ├── levelButton9_locked-hd.png │ │ ├── levelButton9_locked-ipad-hd.png │ │ ├── levelButton9_locked-ipad.png │ │ ├── levelButton9_locked.png │ │ ├── levelLocked-hd.png │ │ ├── levelLocked-ipad.png │ │ ├── levelLocked.png │ │ ├── marbleSquare-hd.png │ │ ├── marbleSquare.png │ │ ├── menu_background-hd.png │ │ ├── menu_background-ipad-hd.png │ │ ├── menu_background-ipad.png │ │ ├── menu_background.png │ │ ├── mutantPepper-hd.png │ │ ├── mutantPepper.png │ │ ├── mutantPepper_blink-hd.png │ │ ├── mutantPepper_blink.png │ │ ├── mutantPepper_break0001-hd.png │ │ ├── mutantPepper_break0001.png │ │ ├── mutantPepper_break0002-hd.png │ │ ├── mutantPepper_break0002.png │ │ ├── mutantPepper_break0003-hd.png │ │ ├── mutantPepper_break0003.png │ │ ├── mutantPepper_break0004-hd.png │ │ ├── mutantPepper_break0004.png │ │ ├── mutantPepper_break0005-hd.png │ │ ├── mutantPepper_break0005.png │ │ ├── mutantPepper_break0006-hd.png │ │ ├── mutantPepper_break0006.png │ │ ├── mutantPepper_break0007-hd.png │ │ ├── mutantPepper_break0007.png │ │ ├── mutantPepper_break0008-hd.png │ │ ├── mutantPepper_break0008.png │ │ ├── mutantPepper_break0009-hd.png │ │ ├── mutantPepper_break0009.png │ │ ├── mutantPepper_break0010-hd.png │ │ ├── mutantPepper_break0010.png │ │ ├── mutantPepper_damage1-hd.png │ │ ├── mutantPepper_damage1.png │ │ ├── mutantPepper_damage2-hd.png │ │ ├── mutantPepper_damage2.png │ │ ├── mutantPepper_damage3-hd.png │ │ ├── mutantPepper_damage3.png │ │ ├── ninjaBlue_air-hd.png │ │ ├── ninjaBlue_air.png │ │ ├── ninjaBlue_blink-hd.png │ │ ├── ninjaBlue_blink.png │ │ ├── ninjaBlue_in_sling-hd.png │ │ ├── ninjaBlue_in_sling.png │ │ ├── ninjaBlue_on_ground-hd.png │ │ ├── ninjaBlue_on_ground.png │ │ ├── ninjaBlue_roll-hd.png │ │ ├── ninjaBlue_roll.png │ │ ├── ninjaBlue_roll0001-hd.png │ │ ├── ninjaBlue_roll0001.png │ │ ├── ninjaBlue_roll0002-hd.png │ │ ├── ninjaBlue_roll0002.png │ │ ├── ninjaBlue_roll0003-hd.png │ │ ├── ninjaBlue_roll0003.png │ │ ├── ninjaBlue_standing-hd.png │ │ ├── ninjaBlue_standing.png │ │ ├── ninjaBrown_air-hd.png │ │ ├── ninjaBrown_air.png │ │ ├── ninjaBrown_blink-hd.png │ │ ├── ninjaBrown_blink.png │ │ ├── ninjaBrown_in_sling-hd.png │ │ ├── ninjaBrown_in_sling.png │ │ ├── ninjaBrown_on_ground-hd.png │ │ ├── ninjaBrown_on_ground.png │ │ ├── ninjaBrown_roll-hd.png │ │ ├── ninjaBrown_roll.png │ │ ├── ninjaBrown_roll0001-hd.png │ │ ├── ninjaBrown_roll0001.png │ │ ├── ninjaBrown_roll0002-hd.png │ │ ├── ninjaBrown_roll0002.png │ │ ├── ninjaBrown_roll0003-hd.png │ │ ├── ninjaBrown_roll0003.png │ │ ├── ninjaBrown_standing-hd.png │ │ ├── ninjaBrown_standing.png │ │ ├── ninjaGreen_air-hd.png │ │ ├── ninjaGreen_air.png │ │ ├── ninjaGreen_blink-hd.png │ │ ├── ninjaGreen_blink.png │ │ ├── ninjaGreen_in_sling-hd.png │ │ ├── ninjaGreen_in_sling.png │ │ ├── ninjaGreen_on_ground-hd.png │ │ ├── ninjaGreen_on_ground.png │ │ ├── ninjaGreen_roll-hd.png │ │ ├── ninjaGreen_roll.png │ │ ├── ninjaGreen_roll0001-hd.png │ │ ├── ninjaGreen_roll0001.png │ │ ├── ninjaGreen_roll0002-hd.png │ │ ├── ninjaGreen_roll0002.png │ │ ├── ninjaGreen_roll0003-hd.png │ │ ├── ninjaGreen_roll0003.png │ │ ├── ninjaGreen_standing-hd.png │ │ ├── ninjaGreen_standing.png │ │ ├── ninjaRed_air-hd.png │ │ ├── ninjaRed_air.png │ │ ├── ninjaRed_blink-hd.png │ │ ├── ninjaRed_blink.png │ │ ├── ninjaRed_in_sling-hd.png │ │ ├── ninjaRed_in_sling.png │ │ ├── ninjaRed_on_ground-hd.png │ │ ├── ninjaRed_on_ground.png │ │ ├── ninjaRed_roll-hd.png │ │ ├── ninjaRed_roll.png │ │ ├── ninjaRed_roll0001-hd.png │ │ ├── ninjaRed_roll0001.png │ │ ├── ninjaRed_roll0002-hd.png │ │ ├── ninjaRed_roll0002.png │ │ ├── ninjaRed_roll0003-hd.png │ │ ├── ninjaRed_roll0003.png │ │ ├── ninjaRed_standing-hd.png │ │ ├── ninjaRed_standing.png │ │ ├── ninja_air-hd.png │ │ ├── ninja_air.png │ │ ├── ninja_blink-hd.png │ │ ├── ninja_blink.png │ │ ├── ninja_in_sling-hd.png │ │ ├── ninja_in_sling.png │ │ ├── ninja_on_ground-hd.png │ │ ├── ninja_on_ground.png │ │ ├── ninja_roll-hd.png │ │ ├── ninja_roll.png │ │ ├── ninja_roll0001-hd.png │ │ ├── ninja_roll0001.png │ │ ├── ninja_roll0002-hd.png │ │ ├── ninja_roll0002.png │ │ ├── ninja_roll0003-hd.png │ │ ├── ninja_roll0003.png │ │ ├── ninja_standing-hd.png │ │ ├── ninja_standing.png │ │ ├── octogonShape-hd.png │ │ ├── octogonShape.png │ │ ├── parallelogram-hd.png │ │ ├── parallelogram.png │ │ ├── parallelogram2-hd.png │ │ ├── parallelogram2.png │ │ ├── pentagon-hd.png │ │ ├── pentagon.png │ │ ├── platform-hd.png │ │ ├── platform.png │ │ ├── puffs_0001-hd.png │ │ ├── puffs_0001.png │ │ ├── puffs_0002-hd.png │ │ ├── puffs_0002.png │ │ ├── puffs_0003-hd.png │ │ ├── puffs_0003.png │ │ ├── puffs_0004-hd.png │ │ ├── puffs_0004.png │ │ ├── puffs_0005-hd.png │ │ ├── puffs_0005.png │ │ ├── puffs_0006-hd.png │ │ ├── puffs_0006.png │ │ ├── puffs_0007-hd.png │ │ ├── puffs_0007.png │ │ ├── slingshot_front-hd.png │ │ ├── slingshot_front.png │ │ ├── soundFX-hd.png │ │ ├── soundFX-ipad-hd.png │ │ ├── soundFX-ipad.png │ │ ├── soundFX.png │ │ ├── soundFX_dim-hd.png │ │ ├── soundFX_dim-ipad-hd.png │ │ ├── soundFX_dim-ipad.png │ │ ├── soundFX_dim.png │ │ ├── stonePillar-hd.png │ │ ├── stonePillar.png │ │ ├── strap-hd.png │ │ ├── strap.png │ │ ├── strapBack-hd.png │ │ ├── strapBack.png │ │ ├── strapEmpty-hd.png │ │ ├── strapEmpty.png │ │ ├── trapezoid-hd.png │ │ ├── trapezoid.png │ │ ├── trapezoid2-hd.png │ │ ├── trapezoid2.png │ │ ├── triangleLarge-hd.png │ │ ├── triangleLarge.png │ │ ├── triangleMedium-hd.png │ │ ├── triangleMedium.png │ │ ├── triangleRightAngle-hd.png │ │ ├── triangleRightAngle.png │ │ ├── triangleSmall-hd.png │ │ ├── triangleSmall.png │ │ ├── triangleTall-hd.png │ │ ├── triangleTall.png │ │ ├── voiceFX-hd.png │ │ ├── voiceFX-ipad-hd.png │ │ ├── voiceFX-ipad.png │ │ ├── voiceFX.png │ │ ├── voiceFX_dim-hd.png │ │ ├── voiceFX_dim-ipad-hd.png │ │ ├── voiceFX_dim-ipad.png │ │ ├── voiceFX_dim.png │ │ ├── woodShape1-hd.png │ │ ├── woodShape1.png │ │ ├── woodShape1_0001-hd.png │ │ ├── woodShape1_0001.png │ │ ├── woodShape1_0002-hd.png │ │ ├── woodShape1_0002.png │ │ ├── woodShape1_0003-hd.png │ │ ├── woodShape1_0003.png │ │ ├── woodShape1_0004-hd.png │ │ ├── woodShape1_0004.png │ │ ├── woodShape1_0005-hd.png │ │ ├── woodShape1_0005.png │ │ ├── woodShape1_0006-hd.png │ │ ├── woodShape1_0006.png │ │ ├── woodShape1_0007-hd.png │ │ ├── woodShape1_0007.png │ │ ├── woodShape1_0008-hd.png │ │ ├── woodShape1_0008.png │ │ ├── woodShape1_0009-hd.png │ │ ├── woodShape1_0009.png │ │ ├── woodShape1_0010-hd.png │ │ ├── woodShape1_0010.png │ │ ├── woodShape2-hd.png │ │ ├── woodShape2.png │ │ ├── woodShape3-hd.png │ │ ├── woodShape3.png │ │ ├── woodShape4-hd.png │ │ └── woodShape4.png │ └── wp8 │ │ ├── 10000points-hd.xnb │ │ ├── 10000points.xnb │ │ ├── 1000points-hd.xnb │ │ ├── 1000points.xnb │ │ ├── 100points-hd.xnb │ │ ├── 100points.xnb │ │ ├── 5000points-hd.xnb │ │ ├── 5000points.xnb │ │ ├── 500points-hd.xnb │ │ ├── 500points.xnb │ │ ├── Default-Landscape~ipad.xnb │ │ ├── Default.xnb │ │ ├── Default_hd.xnb │ │ ├── Default_ipad.xnb │ │ ├── Emulogic-10.xnb │ │ ├── Emulogic-15.xnb │ │ ├── Emulogic-20.xnb │ │ ├── Emulogic-25.xnb │ │ ├── Emulogic-30.xnb │ │ ├── Icon-144.xnb │ │ ├── Icon-72.xnb │ │ ├── Icon-Small-50.xnb │ │ ├── Icon-Small.xnb │ │ ├── Icon-Small@2x.xnb │ │ ├── Icon.xnb │ │ ├── Icon@2x.xnb │ │ ├── IntroLayer-hd.xnb │ │ ├── IntroLayer-ipad.xnb │ │ ├── IntroLayer-ipadhd.xnb │ │ ├── IntroLayer.xnb │ │ ├── Sounds │ │ ├── birds.wma │ │ ├── birds.xnb │ │ ├── bloop.xnb │ │ ├── break1.xnb │ │ ├── break2.xnb │ │ ├── break3.xnb │ │ ├── drums.xnb │ │ ├── frogs.wma │ │ ├── frogs.xnb │ │ ├── gong.xnb │ │ ├── grunt1.xnb │ │ ├── grunt2.xnb │ │ ├── grunt3.xnb │ │ ├── grunt4.xnb │ │ ├── grunt5.xnb │ │ ├── grunt6.xnb │ │ ├── grunt7.xnb │ │ ├── grunt8.xnb │ │ ├── impact1.xnb │ │ ├── impact2.xnb │ │ ├── impact3.xnb │ │ ├── impact4.xnb │ │ ├── impact5.xnb │ │ └── whoosh.xnb │ │ ├── ambientFX-hd.xnb │ │ ├── ambientFX-ipad-hd.xnb │ │ ├── ambientFX-ipad.xnb │ │ ├── ambientFX.xnb │ │ ├── ambientFX_dim-hd.xnb │ │ ├── ambientFX_dim-ipad-hd.xnb │ │ ├── ambientFX_dim-ipad.xnb │ │ ├── ambientFX_dim.xnb │ │ ├── background_clouds-hd.xnb │ │ ├── background_clouds.xnb │ │ ├── background_hills-hd.xnb │ │ ├── background_hills.xnb │ │ ├── blocks-ipad.xnb │ │ ├── blocks.xnb │ │ ├── circle-hd.xnb │ │ ├── circle.xnb │ │ ├── circleShape-hd.xnb │ │ ├── circleShape.xnb │ │ ├── explosion_0001-hd.xnb │ │ ├── explosion_0001.xnb │ │ ├── explosion_0002-hd.xnb │ │ ├── explosion_0002.xnb │ │ ├── explosion_0003-hd.xnb │ │ ├── explosion_0003.xnb │ │ ├── explosion_0004-hd.xnb │ │ ├── explosion_0004.xnb │ │ ├── explosion_0005-hd.xnb │ │ ├── explosion_0005.xnb │ │ ├── explosion_0006-hd.xnb │ │ ├── explosion_0006.xnb │ │ ├── explosion_0007-hd.xnb │ │ ├── explosion_0007.xnb │ │ ├── explosion_0008-hd.xnb │ │ ├── explosion_0008.xnb │ │ ├── explosion_0009-hd.xnb │ │ ├── explosion_0009.xnb │ │ ├── explosion_0010-hd.xnb │ │ ├── explosion_0010.xnb │ │ ├── explosion_0011-hd.xnb │ │ ├── explosion_0011.xnb │ │ ├── fire.xnb │ │ ├── fonts │ │ ├── MarkerFelt-16.xnb │ │ ├── MarkerFelt-18.xnb │ │ └── MarkerFelt-22.xnb │ │ ├── fps_images-hd.xnb │ │ ├── fps_images-ipadhd.xnb │ │ ├── fps_images.xnb │ │ ├── gameMenu-hd.xnb │ │ ├── gameMenu-ipad.xnb │ │ ├── gameMenu.xnb │ │ ├── grid_example.xnb │ │ ├── ground_plane-hd.xnb │ │ ├── ground_plane.xnb │ │ ├── hexagonShape-hd.xnb │ │ ├── hexagonShape.xnb │ │ ├── hexagonShape2-hd.xnb │ │ ├── hexagonShape2.xnb │ │ ├── levelButton1-hd.xnb │ │ ├── levelButton1-ipad-hd.xnb │ │ ├── levelButton1-ipad.xnb │ │ ├── levelButton1.xnb │ │ ├── levelButton10-hd.xnb │ │ ├── levelButton10-ipad-hd.xnb │ │ ├── levelButton10-ipad.xnb │ │ ├── levelButton10.xnb │ │ ├── levelButton10_locked-hd.xnb │ │ ├── levelButton10_locked-ipad-hd.xnb │ │ ├── levelButton10_locked-ipad.xnb │ │ ├── levelButton10_locked.xnb │ │ ├── levelButton2-hd.xnb │ │ ├── levelButton2-ipad-hd.xnb │ │ ├── levelButton2-ipad.xnb │ │ ├── levelButton2.xnb │ │ ├── levelButton2_locked-hd.xnb │ │ ├── levelButton2_locked-ipad-hd.xnb │ │ ├── levelButton2_locked-ipad.xnb │ │ ├── levelButton2_locked.xnb │ │ ├── levelButton3-hd.xnb │ │ ├── levelButton3-ipad-hd.xnb │ │ ├── levelButton3-ipad.xnb │ │ ├── levelButton3.xnb │ │ ├── levelButton3_locked-hd.xnb │ │ ├── levelButton3_locked-ipad-hd.xnb │ │ ├── levelButton3_locked-ipad.xnb │ │ ├── levelButton3_locked.xnb │ │ ├── levelButton4-hd.xnb │ │ ├── levelButton4-ipad-hd.xnb │ │ ├── levelButton4-ipad.xnb │ │ ├── levelButton4.xnb │ │ ├── levelButton4_locked-hd.xnb │ │ ├── levelButton4_locked-ipad-hd.xnb │ │ ├── levelButton4_locked-ipad.xnb │ │ ├── levelButton4_locked.xnb │ │ ├── levelButton5-hd.xnb │ │ ├── levelButton5-ipad-hd.xnb │ │ ├── levelButton5-ipad.xnb │ │ ├── levelButton5.xnb │ │ ├── levelButton5_locked-hd.xnb │ │ ├── levelButton5_locked-ipad-hd.xnb │ │ ├── levelButton5_locked-ipad.xnb │ │ ├── levelButton5_locked.xnb │ │ ├── levelButton6-hd.xnb │ │ ├── levelButton6-ipad-hd.xnb │ │ ├── levelButton6-ipad.xnb │ │ ├── levelButton6.xnb │ │ ├── levelButton6_locked-hd.xnb │ │ ├── levelButton6_locked-ipad-hd.xnb │ │ ├── levelButton6_locked-ipad.xnb │ │ ├── levelButton6_locked.xnb │ │ ├── levelButton7-hd.xnb │ │ ├── levelButton7-ipad-hd.xnb │ │ ├── levelButton7-ipad.xnb │ │ ├── levelButton7.xnb │ │ ├── levelButton7_locked-hd.xnb │ │ ├── levelButton7_locked-ipad-hd.xnb │ │ ├── levelButton7_locked-ipad.xnb │ │ ├── levelButton7_locked.xnb │ │ ├── levelButton8-hd.xnb │ │ ├── levelButton8-ipad-hd.xnb │ │ ├── levelButton8-ipad.xnb │ │ ├── levelButton8.xnb │ │ ├── levelButton8_locked-hd.xnb │ │ ├── levelButton8_locked-ipad-hd.xnb │ │ ├── levelButton8_locked-ipad.xnb │ │ ├── levelButton8_locked.xnb │ │ ├── levelButton9-hd.xnb │ │ ├── levelButton9-ipad-hd.xnb │ │ ├── levelButton9-ipad.xnb │ │ ├── levelButton9.xnb │ │ ├── levelButton9_locked-hd.xnb │ │ ├── levelButton9_locked-ipad-hd.xnb │ │ ├── levelButton9_locked-ipad.xnb │ │ ├── levelButton9_locked.xnb │ │ ├── levelLocked-hd.xnb │ │ ├── levelLocked-ipad.xnb │ │ ├── levelLocked.xnb │ │ ├── marbleSquare-hd.xnb │ │ ├── marbleSquare.xnb │ │ ├── menu_background-hd.xnb │ │ ├── menu_background-ipad-hd.xnb │ │ ├── menu_background-ipad.xnb │ │ ├── menu_background.xnb │ │ ├── mutantPepper-hd.xnb │ │ ├── mutantPepper.xnb │ │ ├── mutantPepper_blink-hd.xnb │ │ ├── mutantPepper_blink.xnb │ │ ├── mutantPepper_break0001-hd.xnb │ │ ├── mutantPepper_break0001.xnb │ │ ├── mutantPepper_break0002-hd.xnb │ │ ├── mutantPepper_break0002.xnb │ │ ├── mutantPepper_break0003-hd.xnb │ │ ├── mutantPepper_break0003.xnb │ │ ├── mutantPepper_break0004-hd.xnb │ │ ├── mutantPepper_break0004.xnb │ │ ├── mutantPepper_break0005-hd.xnb │ │ ├── mutantPepper_break0005.xnb │ │ ├── mutantPepper_break0006-hd.xnb │ │ ├── mutantPepper_break0006.xnb │ │ ├── mutantPepper_break0007-hd.xnb │ │ ├── mutantPepper_break0007.xnb │ │ ├── mutantPepper_break0008-hd.xnb │ │ ├── mutantPepper_break0008.xnb │ │ ├── mutantPepper_break0009-hd.xnb │ │ ├── mutantPepper_break0009.xnb │ │ ├── mutantPepper_break0010-hd.xnb │ │ ├── mutantPepper_break0010.xnb │ │ ├── mutantPepper_damage1-hd.xnb │ │ ├── mutantPepper_damage1.xnb │ │ ├── mutantPepper_damage2-hd.xnb │ │ ├── mutantPepper_damage2.xnb │ │ ├── mutantPepper_damage3-hd.xnb │ │ ├── mutantPepper_damage3.xnb │ │ ├── ninjaBlue_air-hd.xnb │ │ ├── ninjaBlue_air.xnb │ │ ├── ninjaBlue_blink-hd.xnb │ │ ├── ninjaBlue_blink.xnb │ │ ├── ninjaBlue_in_sling-hd.xnb │ │ ├── ninjaBlue_in_sling.xnb │ │ ├── ninjaBlue_on_ground-hd.xnb │ │ ├── ninjaBlue_on_ground.xnb │ │ ├── ninjaBlue_roll-hd.xnb │ │ ├── ninjaBlue_roll.xnb │ │ ├── ninjaBlue_roll0001-hd.xnb │ │ ├── ninjaBlue_roll0001.xnb │ │ ├── ninjaBlue_roll0002-hd.xnb │ │ ├── ninjaBlue_roll0002.xnb │ │ ├── ninjaBlue_roll0003-hd.xnb │ │ ├── ninjaBlue_roll0003.xnb │ │ ├── ninjaBlue_standing-hd.xnb │ │ ├── ninjaBlue_standing.xnb │ │ ├── ninjaBrown_air-hd.xnb │ │ ├── ninjaBrown_air.xnb │ │ ├── ninjaBrown_blink-hd.xnb │ │ ├── ninjaBrown_blink.xnb │ │ ├── ninjaBrown_in_sling-hd.xnb │ │ ├── ninjaBrown_in_sling.xnb │ │ ├── ninjaBrown_on_ground-hd.xnb │ │ ├── ninjaBrown_on_ground.xnb │ │ ├── ninjaBrown_roll-hd.xnb │ │ ├── ninjaBrown_roll.xnb │ │ ├── ninjaBrown_roll0001-hd.xnb │ │ ├── ninjaBrown_roll0001.xnb │ │ ├── ninjaBrown_roll0002-hd.xnb │ │ ├── ninjaBrown_roll0002.xnb │ │ ├── ninjaBrown_roll0003-hd.xnb │ │ ├── ninjaBrown_roll0003.xnb │ │ ├── ninjaBrown_standing-hd.xnb │ │ ├── ninjaBrown_standing.xnb │ │ ├── ninjaGreen_air-hd.xnb │ │ ├── ninjaGreen_air.xnb │ │ ├── ninjaGreen_blink-hd.xnb │ │ ├── ninjaGreen_blink.xnb │ │ ├── ninjaGreen_in_sling-hd.xnb │ │ ├── ninjaGreen_in_sling.xnb │ │ ├── ninjaGreen_on_ground-hd.xnb │ │ ├── ninjaGreen_on_ground.xnb │ │ ├── ninjaGreen_roll-hd.xnb │ │ ├── ninjaGreen_roll.xnb │ │ ├── ninjaGreen_roll0001-hd.xnb │ │ ├── ninjaGreen_roll0001.xnb │ │ ├── ninjaGreen_roll0002-hd.xnb │ │ ├── ninjaGreen_roll0002.xnb │ │ ├── ninjaGreen_roll0003-hd.xnb │ │ ├── ninjaGreen_roll0003.xnb │ │ ├── ninjaGreen_standing-hd.xnb │ │ ├── ninjaGreen_standing.xnb │ │ ├── ninjaRed_air-hd.xnb │ │ ├── ninjaRed_air.xnb │ │ ├── ninjaRed_blink-hd.xnb │ │ ├── ninjaRed_blink.xnb │ │ ├── ninjaRed_in_sling-hd.xnb │ │ ├── ninjaRed_in_sling.xnb │ │ ├── ninjaRed_on_ground-hd.xnb │ │ ├── ninjaRed_on_ground.xnb │ │ ├── ninjaRed_roll-hd.xnb │ │ ├── ninjaRed_roll.xnb │ │ ├── ninjaRed_roll0001-hd.xnb │ │ ├── ninjaRed_roll0001.xnb │ │ ├── ninjaRed_roll0002-hd.xnb │ │ ├── ninjaRed_roll0002.xnb │ │ ├── ninjaRed_roll0003-hd.xnb │ │ ├── ninjaRed_roll0003.xnb │ │ ├── ninjaRed_standing-hd.xnb │ │ ├── ninjaRed_standing.xnb │ │ ├── ninja_air-hd.xnb │ │ ├── ninja_air.xnb │ │ ├── ninja_blink-hd.xnb │ │ ├── ninja_blink.xnb │ │ ├── ninja_in_sling-hd.xnb │ │ ├── ninja_in_sling.xnb │ │ ├── ninja_on_ground-hd.xnb │ │ ├── ninja_on_ground.xnb │ │ ├── ninja_roll-hd.xnb │ │ ├── ninja_roll.xnb │ │ ├── ninja_roll0001-hd.xnb │ │ ├── ninja_roll0001.xnb │ │ ├── ninja_roll0002-hd.xnb │ │ ├── ninja_roll0002.xnb │ │ ├── ninja_roll0003-hd.xnb │ │ ├── ninja_roll0003.xnb │ │ ├── ninja_standing-hd.xnb │ │ ├── ninja_standing.xnb │ │ ├── octogonShape-hd.xnb │ │ ├── octogonShape.xnb │ │ ├── parallelogram-hd.xnb │ │ ├── parallelogram.xnb │ │ ├── parallelogram2-hd.xnb │ │ ├── parallelogram2.xnb │ │ ├── pentagon-hd.xnb │ │ ├── pentagon.xnb │ │ ├── platform-hd.xnb │ │ ├── platform.xnb │ │ ├── puffs_0001-hd.xnb │ │ ├── puffs_0001.xnb │ │ ├── puffs_0002-hd.xnb │ │ ├── puffs_0002.xnb │ │ ├── puffs_0003-hd.xnb │ │ ├── puffs_0003.xnb │ │ ├── puffs_0004-hd.xnb │ │ ├── puffs_0004.xnb │ │ ├── puffs_0005-hd.xnb │ │ ├── puffs_0005.xnb │ │ ├── puffs_0006-hd.xnb │ │ ├── puffs_0006.xnb │ │ ├── puffs_0007-hd.xnb │ │ ├── puffs_0007.xnb │ │ ├── slingshot_front-hd.xnb │ │ ├── slingshot_front.xnb │ │ ├── soundFX-hd.xnb │ │ ├── soundFX-ipad-hd.xnb │ │ ├── soundFX-ipad.xnb │ │ ├── soundFX.xnb │ │ ├── soundFX_dim-hd.xnb │ │ ├── soundFX_dim-ipad-hd.xnb │ │ ├── soundFX_dim-ipad.xnb │ │ ├── soundFX_dim.xnb │ │ ├── stonePillar-hd.xnb │ │ ├── stonePillar.xnb │ │ ├── strap-hd.xnb │ │ ├── strap.xnb │ │ ├── strapBack-hd.xnb │ │ ├── strapBack.xnb │ │ ├── strapEmpty-hd.xnb │ │ ├── strapEmpty.xnb │ │ ├── trapezoid-hd.xnb │ │ ├── trapezoid.xnb │ │ ├── trapezoid2-hd.xnb │ │ ├── trapezoid2.xnb │ │ ├── triangleLarge-hd.xnb │ │ ├── triangleLarge.xnb │ │ ├── triangleMedium-hd.xnb │ │ ├── triangleMedium.xnb │ │ ├── triangleRightAngle-hd.xnb │ │ ├── triangleRightAngle.xnb │ │ ├── triangleSmall-hd.xnb │ │ ├── triangleSmall.xnb │ │ ├── triangleTall-hd.xnb │ │ ├── triangleTall.xnb │ │ ├── voiceFX-hd.xnb │ │ ├── voiceFX-ipad-hd.xnb │ │ ├── voiceFX-ipad.xnb │ │ ├── voiceFX.xnb │ │ ├── voiceFX_dim-hd.xnb │ │ ├── voiceFX_dim-ipad-hd.xnb │ │ ├── voiceFX_dim-ipad.xnb │ │ ├── voiceFX_dim.xnb │ │ ├── woodShape1-hd.xnb │ │ ├── woodShape1.xnb │ │ ├── woodShape1_0001-hd.xnb │ │ ├── woodShape1_0001.xnb │ │ ├── woodShape1_0002-hd.xnb │ │ ├── woodShape1_0002.xnb │ │ ├── woodShape1_0003-hd.xnb │ │ ├── woodShape1_0003.xnb │ │ ├── woodShape1_0004-hd.xnb │ │ ├── woodShape1_0004.xnb │ │ ├── woodShape1_0005-hd.xnb │ │ ├── woodShape1_0005.xnb │ │ ├── woodShape1_0006-hd.xnb │ │ ├── woodShape1_0006.xnb │ │ ├── woodShape1_0007-hd.xnb │ │ ├── woodShape1_0007.xnb │ │ ├── woodShape1_0008-hd.xnb │ │ ├── woodShape1_0008.xnb │ │ ├── woodShape1_0009-hd.xnb │ │ ├── woodShape1_0009.xnb │ │ ├── woodShape1_0010-hd.xnb │ │ ├── woodShape1_0010.xnb │ │ ├── woodShape2-hd.xnb │ │ ├── woodShape2.xnb │ │ ├── woodShape3-hd.xnb │ │ ├── woodShape3.xnb │ │ ├── woodShape4-hd.xnb │ │ └── woodShape4.xnb │ ├── macosx │ ├── AngryNinjas.csproj │ └── Info.plist │ ├── win32 │ ├── AngryNinjas3.csproj │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── Extensions │ │ └── CCDraw.cs │ ├── Game.ico │ └── Properties │ │ └── AssemblyInfo.cs │ ├── win8 │ ├── AppDelegate.cs │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── Game1.cs │ ├── Package.appxmanifest │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SkyDefense.Store.csproj │ └── wp8 │ ├── AngryNinjas.csproj │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppDelegate.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Extensions │ └── CCDraw.cs │ ├── GamePage.xaml │ ├── GamePage.xaml.cs │ ├── LocalizedStrings.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ └── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx ├── AudioSample ├── AudioSample.sln └── AudioSample │ ├── AudioSample.Android │ ├── Assets │ │ ├── AboutAssets.txt │ │ └── Content │ │ │ └── images │ │ │ ├── sliderProgress.png │ │ │ ├── sliderProgress2.png │ │ │ ├── sliderThumb.png │ │ │ ├── sliderTrack.png │ │ │ └── sliderTrack2.png │ ├── AudioSample.Android.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable │ │ │ └── Icon.png │ │ └── values │ │ │ └── Strings.xml │ └── packages.config │ ├── AudioSample.Common │ ├── AudioSample.Common.csproj │ ├── Extensions │ │ └── GUI │ │ │ └── CCControlExtension │ │ │ ├── CCControl.cs │ │ │ ├── CCControlButton.cs │ │ │ ├── CCControlColourPicker.cs │ │ │ ├── CCControlHuePicker.cs │ │ │ ├── CCControlPotentiometer.cs │ │ │ ├── CCControlSaturationPicker.cs │ │ │ ├── CCControlSlider.cs │ │ │ ├── CCControlStepper.cs │ │ │ ├── CCControlSwitch.cs │ │ │ ├── CCControlUtils.cs │ │ │ ├── CCInvocation.cs │ │ │ ├── CCScale9Sprite.cs │ │ │ ├── CCScale9SpriteFile.cs │ │ │ └── CCScale9SpriteFrame.cs │ ├── GameAppDelegate.cs │ ├── GameLayer.cs │ └── packages.config │ └── AudioSample.iOS │ ├── AppDelegate.cs │ ├── AudioSample.iOS.csproj │ ├── Content │ ├── images │ │ ├── sliderProgress.png │ │ ├── sliderProgress2.png │ │ ├── sliderThumb.png │ │ ├── sliderTrack.png │ │ └── sliderTrack2.png │ └── sounds │ │ ├── background.mp3 │ │ ├── birds.mp3 │ │ ├── birds.wma │ │ ├── birds.xnb │ │ ├── bloop.wav │ │ ├── break1.wav │ │ ├── break2.wav │ │ ├── break3.wav │ │ ├── drums.mp3 │ │ ├── drums.wav │ │ ├── effect1.wav │ │ ├── frogs.mp3 │ │ ├── frogs.wma │ │ ├── frogs.xnb │ │ ├── gong.wav │ │ ├── grunt1.wav │ │ ├── grunt2.wav │ │ ├── grunt3.wav │ │ ├── grunt4.wav │ │ ├── grunt5.wav │ │ ├── grunt6.wav │ │ ├── grunt7.wav │ │ ├── grunt8.wav │ │ ├── impact1.wav │ │ ├── impact2.wav │ │ ├── impact3.wav │ │ ├── impact4.wav │ │ ├── impact5.wav │ │ └── whoosh.wav │ ├── Entitlements.plist │ ├── Info.plist │ ├── Resources │ └── Default-568h@2x.png │ └── packages.config ├── CSLilyPath ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── CSLilyPath.sln ├── CSLilyPath │ ├── CSLilyPath.Droid │ │ ├── Assets │ │ │ ├── AboutAssets.txt │ │ │ └── Content │ │ │ │ ├── fonts │ │ │ │ └── MarkerFelt-22.xnb │ │ │ │ ├── hd │ │ │ │ └── images │ │ │ │ │ ├── pattern1.png │ │ │ │ │ └── pattern2.png │ │ │ │ └── ld │ │ │ │ └── images │ │ │ │ ├── pattern1.png │ │ │ │ └── pattern2.png │ │ ├── CSLilyPath.Droid.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ ├── Splash.png │ │ │ │ └── icon.png │ │ │ ├── Resource.Designer.cs │ │ │ └── Values │ │ │ │ ├── Strings.xml │ │ │ │ └── Styles.xml │ │ └── packages.config │ ├── CSLilyPath.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── Logo.scale-240.png │ │ │ ├── SmallLogo.scale-240.png │ │ │ ├── SplashScreen.scale-240.png │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ ├── StoreLogo.scale-240.png │ │ │ └── WideLogo.scale-240.png │ │ ├── CSLilyPath.WinPhone.csproj │ │ ├── Content │ │ │ ├── fonts │ │ │ │ └── MarkerFelt-22.xnb │ │ │ ├── hd │ │ │ │ └── images │ │ │ │ │ ├── pattern1.xnb │ │ │ │ │ └── pattern2.xnb │ │ │ └── ld │ │ │ │ └── images │ │ │ │ ├── pattern1.xnb │ │ │ │ └── pattern2.xnb │ │ ├── GamePage.xaml │ │ ├── GamePage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── CSLilyPath.iOS │ │ ├── CSLilyPath.iOS.csproj │ │ ├── Content │ │ │ ├── fonts │ │ │ │ └── MarkerFelt-22.xnb │ │ │ ├── hd │ │ │ │ └── images │ │ │ │ │ ├── pattern1.png │ │ │ │ │ └── pattern2.png │ │ │ └── ld │ │ │ │ └── images │ │ │ │ ├── pattern1.png │ │ │ │ └── pattern2.png │ │ ├── Game.ico │ │ ├── GameThumbnail.png │ │ ├── Info.plist │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── CSLilyPath │ │ ├── AppDelegate.cs │ │ ├── CSLilyPath.csproj │ │ ├── Demos │ │ │ ├── Arcs1.cs │ │ │ ├── Arcs2.cs │ │ │ ├── ClosedArcs.cs │ │ │ ├── CubicBezier.cs │ │ │ ├── Ellipses.cs │ │ │ ├── FilledArcs.cs │ │ │ ├── FilledEllipses.cs │ │ │ ├── FilledShapes.cs │ │ │ ├── GradientPens.cs │ │ │ ├── GradientPensAlignment.cs │ │ │ ├── GraphicsPathOutline.cs │ │ │ ├── GraphicsPathTest.cs │ │ │ ├── GridShape.cs │ │ │ ├── LilyPathLogo.cs │ │ │ ├── LineCaps.cs │ │ │ ├── Mystify.cs │ │ │ ├── OutlineShapes.cs │ │ │ ├── PenAlignmentTest.cs │ │ │ ├── PrimitiveArcs1.cs │ │ │ ├── PrimitiveArcs2.cs │ │ │ ├── PrimitiveClosedArcs.cs │ │ │ ├── PrimitiveEllipses.cs │ │ │ ├── PrimitiveShapes.cs │ │ │ ├── QuadraticBezier.cs │ │ │ ├── TextureFill.cs │ │ │ └── WaterLilly.cs │ │ ├── IntroLayer.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TestLayer.cs │ │ └── packages.config │ └── LilyPath │ │ ├── Brush.cs │ │ ├── DrawBatch.cs │ │ ├── DrawCache.cs │ │ ├── Enums.cs │ │ ├── GraphicsPath.cs │ │ ├── LilyPath.projitems │ │ ├── LilyPath.shproj │ │ ├── LineCapInfo.cs │ │ ├── PathBuilder.cs │ │ ├── Pen.cs │ │ ├── SolidColorBrush.cs │ │ ├── TextureBrush.cs │ │ ├── Triangulator.cs │ │ └── Utility │ │ ├── Buffer.cs │ │ ├── PenWorkspace.cs │ │ ├── Pool.cs │ │ ├── Pools.cs │ │ └── ZeroList.cs ├── LilyPath │ ├── Brush.cs │ ├── DrawBatch.cs │ ├── DrawCache.cs │ ├── Enums.cs │ ├── GraphicsPath.cs │ ├── LilyPath.csproj │ ├── LineCapInfo.cs │ ├── PathBuilder.cs │ ├── Pen.cs │ ├── Pens │ │ ├── GradientPen.cs │ │ └── PathGradientPen.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Shapes │ │ └── Grid.cs │ ├── SolidColorBrush.cs │ ├── TextureBrush.cs │ ├── Triangulator.cs │ ├── Utility │ │ ├── Buffer.cs │ │ ├── PenWorkspace.cs │ │ ├── Pool.cs │ │ ├── Pools.cs │ │ └── ZeroList.cs │ └── packages.config ├── README.md └── ScreenShots │ ├── Arcs1.png │ ├── Arcs2.png │ ├── ClosedArcs.png │ ├── Ellipses.png │ ├── FilledArcs.png │ ├── FilledEllipses.png │ ├── FilledShapes.png │ ├── GradientPens.png │ ├── GradientPensAlignment.png │ ├── GraphicsPathOutline.png │ ├── GraphicsPathTest.png │ ├── GridShape.png │ ├── LilyPathLogo.png │ ├── LineCaps.png │ ├── OutlineShapes.png │ └── TextureFill.png ├── CocosSharpBox2d ├── CocosSharpBox2d.sln ├── CocosSharpBox2d │ ├── CocosSharpBox2d.Droid │ │ ├── Assets │ │ │ ├── AboutAssets.txt │ │ │ └── Content │ │ │ │ └── fonts │ │ │ │ └── MarkerFelt-22.xnb │ │ ├── CocosSharpBox2d.Droid.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ ├── Splash.png │ │ │ │ └── icon.png │ │ │ ├── Resource.Designer.cs │ │ │ └── Values │ │ │ │ ├── Strings.xml │ │ │ │ └── Styles.xml │ │ └── packages.config │ ├── CocosSharpBox2d.Shared │ │ ├── AppDelegate.cs │ │ ├── Box2DDebug.cs │ │ ├── CCPhysicsSprite.cs │ │ ├── CocosSharpBox2d.Shared.shproj │ │ ├── EmptyProject.Shared.projitems │ │ └── IntroLayer.cs │ ├── CocosSharpBox2d.WP81 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── Logo.scale-240.png │ │ │ ├── SmallLogo.scale-240.png │ │ │ ├── SplashScreen.scale-240.png │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ ├── StoreLogo.scale-240.png │ │ │ └── WideLogo.scale-240.png │ │ ├── CocosSharpBox2d.WP81.csproj │ │ ├── Content │ │ │ ├── fonts │ │ │ │ └── MarkerFelt-22.xnb │ │ │ └── hd │ │ │ │ └── images │ │ │ │ ├── cloud.png │ │ │ │ └── cloud.xnb │ │ ├── GamePage.xaml │ │ ├── GamePage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── CocosSharpBox2d.iOS │ │ ├── CocosSharpBox2d.iOS.csproj │ │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ │ ├── Game.ico │ │ ├── GameThumbnail.png │ │ ├── Info.plist │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config └── readme.md ├── DrawNodeBuffer ├── DrawNodeBuffer.sln └── DrawNodeBuffer │ ├── DrawNodeBuffer.Droid │ ├── Assets │ │ ├── AboutAssets.txt │ │ └── Content │ │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── DrawNodeBuffer.Droid.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Drawable │ │ │ ├── Splash.png │ │ │ └── icon.png │ │ ├── Resource.Designer.cs │ │ └── Values │ │ │ ├── Strings.xml │ │ │ └── Styles.xml │ └── packages.config │ ├── DrawNodeBuffer.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Logo.scale-240.png │ │ ├── SmallLogo.scale-240.png │ │ ├── SplashScreen.scale-240.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-240.png │ │ └── WideLogo.scale-240.png │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── DrawNodeBuffer.WinPhone.csproj │ ├── GamePage.xaml │ ├── GamePage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config │ ├── DrawNodeBuffer.iOS │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── DrawNodeBuffer.iOS.csproj │ ├── Game.ico │ ├── GameThumbnail.png │ ├── Info.plist │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config │ └── DrawNodeBuffer │ ├── AppDelegate.cs │ ├── DrawNodeBuffer.cs │ ├── DrawNodeBuffer.csproj │ ├── IntroLayer.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── DynamicTextures ├── DynamicTextures.Content │ ├── Content │ │ └── images │ │ │ ├── Noise-hd.png │ │ │ ├── Noise-iphone5hd.png │ │ │ └── Noise.png │ ├── DynamicTextures.Content.projitems │ └── DynamicTextures.Content.shproj ├── DynamicTextures.sln ├── DynamicTextures │ ├── DynamicTextures.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── DynamicTextures.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable │ │ │ │ └── Icon.png │ │ │ └── values │ │ │ │ └── Strings.xml │ │ └── packages.config │ ├── DynamicTextures.Common │ │ ├── DynamicTextures.Common.csproj │ │ ├── GameAppDelegate.cs │ │ ├── GameLayer.cs │ │ ├── SpriteWithColor.cs │ │ ├── StripeWithColor.cs │ │ ├── Utilities.cs │ │ └── packages.config │ └── DynamicTextures.iOS │ │ ├── AppDelegate.cs │ │ ├── DynamicTextures.iOS.csproj │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Resources │ │ └── Default-568h@2x.png │ │ └── packages.config └── README.md ├── GoneBananas ├── GoneBananas-VS.sln ├── GoneBananas.sln ├── GoneBananasAndroid │ ├── Assets │ │ ├── AboutAssets.txt │ │ └── Content │ │ │ ├── Sounds │ │ │ ├── backgroundMusic.mp3 │ │ │ ├── tap.mp3 │ │ │ └── tap.wav │ │ │ ├── fonts │ │ │ └── arial-22.xnb │ │ │ └── hd │ │ │ ├── animations │ │ │ ├── monkey.plist │ │ │ └── monkey.png │ │ │ ├── balls.png │ │ │ ├── cloud.png │ │ │ └── grass.png │ ├── GoneBananasAndroid.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── Main.axml │ │ └── values │ │ │ └── Strings.xml │ └── packages.config ├── GoneBananasShared │ ├── CCPhysicsSprite.cs │ ├── GameLayer.cs │ ├── GameOverLayer.cs │ ├── GameStartLayer.cs │ ├── GoneBananasApplicationDelegate.cs │ ├── GoneBananasShared.projitems │ └── GoneBananasShared.shproj ├── GoneBananasWindowsDX.sln ├── GoneBananasWindowsWP8.sln ├── GoneBananasWindowsWin8.sln ├── GoneBananasiOS │ ├── AppDelegate.cs │ ├── Content │ │ ├── Sounds │ │ │ ├── backgroundMusic.mp3 │ │ │ └── tap.mp3 │ │ ├── fonts │ │ │ └── arial-22.xnb │ │ └── hd │ │ │ ├── animations │ │ │ ├── monkey.plist │ │ │ └── monkey.png │ │ │ ├── balls.png │ │ │ ├── cloud.png │ │ │ └── grass.png │ ├── GoneBananasiOS-VS.csproj │ ├── GoneBananasiOS.csproj │ ├── Info.plist │ ├── Main.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ └── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ └── Icon-Small-40@2x.png │ └── packages.config ├── README.md ├── Walkthrough.md ├── screenshots │ ├── GameOver.png │ ├── GameStart.png │ └── GoneBananas.png ├── win32 │ ├── Content │ │ ├── Sounds │ │ │ └── tap.xnb │ │ ├── fonts │ │ │ ├── MarkerFelt-22.xnb │ │ │ └── arial-22.xnb │ │ └── hd │ │ │ ├── animations │ │ │ ├── monkey.plist │ │ │ └── monkey.png │ │ │ ├── balls.png │ │ │ ├── cloud.png │ │ │ └── grass.png │ ├── Game.ico │ ├── Game1.cs │ ├── GoneBananas.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── windows8 │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ ├── Content │ │ ├── Sounds │ │ │ └── tap.xnb │ │ ├── fonts │ │ │ ├── MarkerFelt-22.xnb │ │ │ └── arial-22.xnb │ │ └── hd │ │ │ ├── animations │ │ │ ├── monkey.plist │ │ │ └── monkey.png │ │ │ ├── balls.png │ │ │ ├── cloud.png │ │ │ └── grass.png │ ├── GoneBananas.csproj │ ├── Package.appxmanifest │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs └── wp8 │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Content │ ├── Sounds │ │ ├── backgroundMusic.wma │ │ ├── backgroundMusic.xnb │ │ └── tap.xnb │ ├── fonts │ │ └── arial-22.xnb │ └── hd │ │ ├── animations │ │ ├── monkey.plist │ │ └── monkey.xnb │ │ ├── balls.xnb │ │ ├── cloud.xnb │ │ └── grass.xnb │ ├── GamePage.xaml │ ├── GamePage.xaml.cs │ ├── GoneBananas.csproj │ ├── LocalizedStrings.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ └── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx ├── GoneBananas2 ├── GoneBananas-VS.sln ├── GoneBananas.sln ├── GoneBananasAndroid │ ├── Assets │ │ ├── AboutAssets.txt │ │ └── Content │ │ │ ├── images │ │ │ ├── animations │ │ │ │ ├── monkey.plist │ │ │ │ └── monkey.png │ │ │ ├── balls.png │ │ │ ├── cloud.xnb │ │ │ └── grass.png │ │ │ ├── particles │ │ │ └── ExplodingBanana.plist │ │ │ └── sounds │ │ │ ├── backgroundMusic.mp3 │ │ │ ├── tap.mp3 │ │ │ └── tap.wav │ ├── GoneBananasAndroid.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── layout │ │ └── Main.axml │ │ └── values │ │ └── Strings.xml ├── GoneBananasShared │ ├── CCPhysicsSprite.cs │ ├── GameLayer.cs │ ├── GameOverLayer.cs │ ├── GameStartLayer.cs │ ├── GoneBananasApplicationDelegate.cs │ ├── GoneBananasShared.projitems │ └── GoneBananasShared.shproj ├── GoneBananasWatch │ ├── WatchKitApp │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Interface.storyboard │ │ ├── Resources │ │ │ ├── Down@2x.png │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── 24x24@2x.png │ │ │ │ │ ├── 27.5x27.5@2x.png │ │ │ │ │ ├── 29x29@2x.png │ │ │ │ │ ├── 29x29@3x.png │ │ │ │ │ ├── 40x40@2x.png │ │ │ │ │ ├── 44x44@2x.png │ │ │ │ │ ├── 86x86@2x.png │ │ │ │ │ ├── 98x98@2x.png │ │ │ │ │ └── Contents.json │ │ │ ├── Left@2x.png │ │ │ ├── Right@2x.png │ │ │ └── Up@2x.png │ │ └── WatchKitApp.csproj │ └── WatchKitExtension │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── InterfaceController.cs │ │ ├── InterfaceController.designer.cs │ │ └── WatchKitExtension.csproj ├── GoneBananasWindowsDX.sln ├── GoneBananasWindowsWP8.sln ├── GoneBananasWindowsWin8.sln ├── GoneBananasiOS │ ├── AppDelegate.cs │ ├── Content │ │ ├── images │ │ │ ├── animations │ │ │ │ ├── monkey.plist │ │ │ │ └── monkey.png │ │ │ ├── balls.png │ │ │ ├── cloud.png │ │ │ └── grass.png │ │ ├── particles │ │ │ └── ExplodingBanana.plist │ │ └── sounds │ │ │ ├── backgroundMusic.mp3 │ │ │ └── tap.mp3 │ ├── Entitlements.plist │ ├── GoneBananasiOS-VS.csproj │ ├── GoneBananasiOS.csproj │ ├── Info.plist │ ├── Main.cs │ ├── Resources │ │ ├── Images.xcassets │ │ │ └── AppIcons.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-40.png │ │ │ │ ├── Icon-40@2x.png │ │ │ │ ├── Icon-40@3x.png │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-72.png │ │ │ │ ├── Icon-72@2x.png │ │ │ │ ├── Icon-76.png │ │ │ │ ├── Icon-76@2x.png │ │ │ │ ├── Icon-Small-50.png │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ ├── Icon-Small.png │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ ├── Icon.png │ │ │ │ └── Icon@2x.png │ │ ├── LaunchScreen.xib │ │ └── splash.png │ └── packages.config ├── README.md ├── WormHoleSharp │ ├── CFNotificationCenter.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WormHoleSharp.csproj │ ├── Wormhole.cs │ └── packages.config ├── screenshots │ ├── GameOver.png │ ├── GameStart.png │ └── GoneBananas.png ├── win32 │ ├── Content │ │ ├── Sounds │ │ │ └── tap.xnb │ │ ├── fonts │ │ │ ├── MarkerFelt-22.xnb │ │ │ └── arial-22.xnb │ │ └── hd │ │ │ ├── animations │ │ │ ├── monkey.plist │ │ │ └── monkey.png │ │ │ ├── balls.png │ │ │ ├── cloud.png │ │ │ └── grass.png │ ├── Game.ico │ ├── Game1.cs │ ├── GoneBananas.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── windows8 │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ ├── Content │ │ ├── Sounds │ │ │ └── tap.xnb │ │ ├── fonts │ │ │ ├── MarkerFelt-22.xnb │ │ │ └── arial-22.xnb │ │ └── hd │ │ │ ├── animations │ │ │ ├── monkey.plist │ │ │ └── monkey.png │ │ │ ├── balls.png │ │ │ ├── cloud.png │ │ │ └── grass.png │ ├── GoneBananas.csproj │ ├── Package.appxmanifest │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs └── wp8 │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Content │ ├── Sounds │ │ ├── backgroundMusic.wma │ │ ├── backgroundMusic.xnb │ │ └── tap.xnb │ ├── fonts │ │ └── arial-22.xnb │ └── hd │ │ ├── animations │ │ ├── monkey.plist │ │ └── monkey.xnb │ │ ├── balls.xnb │ │ ├── cloud.xnb │ │ └── grass.xnb │ ├── GamePage.xaml │ ├── GamePage.xaml.cs │ ├── GoneBananas.csproj │ ├── LocalizedStrings.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ └── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx ├── MultipleViewports ├── MultipleViewports.sln └── MultipleViewports │ ├── MultipleViewports.Android │ ├── Assets │ │ ├── AboutAssets.txt │ │ └── Content │ │ │ └── images │ │ │ ├── hd │ │ │ └── monkey.xnb │ │ │ └── ld │ │ │ └── monkey.xnb │ ├── MainActivity.cs │ ├── MultipleViewports.Android.csproj │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable │ │ │ └── Icon.png │ │ └── values │ │ │ └── Strings.xml │ └── packages.config │ ├── MultipleViewports.Common │ ├── GameAppDelegate.cs │ ├── GameLayer.cs │ ├── MultipleViewports.Common.csproj │ └── packages.config │ └── MultipleViewports.iOS │ ├── AppDelegate.cs │ ├── Content │ └── images │ │ ├── hd │ │ └── monkey.png │ │ └── ld │ │ └── monkey.png │ ├── Entitlements.plist │ ├── Info.plist │ ├── MultipleViewports.iOS.csproj │ ├── Resources │ └── Default-568h@2x.png │ └── packages.config ├── README.md ├── RocketThrough ├── README.md └── src │ ├── Common │ ├── GameSprite.cs │ ├── IntroLayer.cs │ ├── LineContainer.cs │ └── Rocket.cs │ ├── Content │ ├── common │ │ ├── bg.png │ │ ├── boom.plist │ │ ├── comet.plist │ │ ├── font.fnt │ │ ├── font.png │ │ ├── jet.plist │ │ ├── music │ │ │ ├── background.wma │ │ │ ├── background.xnb │ │ │ ├── pickup.xnb │ │ │ ├── rocket.xnb │ │ │ └── shipBoom.xnb │ │ ├── plink.plist │ │ ├── sprite_sheet.plist │ │ ├── sprite_sheet.png │ │ ├── star.plist │ │ ├── starTexture.png │ │ └── warp.plist │ └── wp8 │ │ ├── bg.xnb │ │ ├── boom.plist │ │ ├── comet.plist │ │ ├── font.fnt │ │ ├── font.xnb │ │ ├── jet.plist │ │ ├── music │ │ ├── background.wma │ │ ├── background.xnb │ │ ├── pickup.xnb │ │ ├── rocket.xnb │ │ └── shipBoom.xnb │ │ ├── plink.plist │ │ ├── sprite_sheet.plist │ │ ├── sprite_sheet.xnb │ │ ├── sprite_sheet3.xnb │ │ ├── star.plist │ │ ├── starTexture.xnb │ │ └── warp.plist │ ├── RocketThrought.sln │ ├── RocketThroughtWP8.sln │ ├── RocketThroughtWin8.sln │ ├── win32 │ ├── AppDelegate.cs │ ├── Content │ │ ├── bg.xnb │ │ ├── boom.plist │ │ ├── comet.plist │ │ ├── font.fnt │ │ ├── font.xnb │ │ ├── fonts │ │ │ └── MarkerFelt-22.xnb │ │ ├── jet.plist │ │ ├── music │ │ │ ├── background.wma │ │ │ ├── background.xnb │ │ │ ├── pickup.xnb │ │ │ ├── rocket.xnb │ │ │ └── shipBoom.xnb │ │ ├── plink.plist │ │ ├── sprite_sheet.plist │ │ ├── sprite_sheet.xnb │ │ ├── sprite_sheet3.xnb │ │ ├── star.plist │ │ ├── starTexture.xnb │ │ └── warp.plist │ ├── Game.ico │ ├── Game1.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── RocketThrought.Windows.csproj │ ├── win8 │ ├── AppDelegate.cs │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── Package.appxmanifest │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RocketThrought.Store.csproj │ └── packages.config │ └── wp8 │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppDelegate.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Content │ └── fonts │ │ └── MarkerFelt-22.xnb │ ├── GamePage.xaml │ ├── GamePage.xaml.cs │ ├── LocalizedStrings.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── RocketThrought.WP8.csproj ├── RotateAroundCustomAction ├── RotateAroundCustomAction.sln ├── RotateAroundCustomAction │ ├── RotateAroundCustomAction.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable │ │ │ │ └── Icon.png │ │ │ └── values │ │ │ │ └── Strings.xml │ │ ├── RotateAroundCustomAction.Android.csproj │ │ └── packages.config │ ├── RotateAroundCustomAction.Common │ │ ├── GameAppDelegate.cs │ │ ├── GameLayer.cs │ │ ├── GameLayer2.cs │ │ ├── RotateAroundActions.cs │ │ ├── RotateAroundCustomAction.Common.csproj │ │ └── packages.config │ └── RotateAroundCustomAction.iOS │ │ ├── AppDelegate.cs │ │ ├── Content │ │ └── images │ │ │ ├── hd │ │ │ └── monkey.png │ │ │ └── ld │ │ │ └── monkey.png │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Resources │ │ └── Default-568h@2x.png │ │ ├── RotateAroundCustomAction.iOS.csproj │ │ └── packages.config └── readme.md ├── SkyDefense ├── README.md └── src │ ├── Common │ └── IntroLayer.cs │ ├── Content │ ├── common │ │ ├── bg.png │ │ ├── font.png │ │ ├── music │ │ │ ├── background.wma │ │ │ ├── background.xnb │ │ │ ├── bombFail.xnb │ │ │ ├── bombRelease.xnb │ │ │ ├── boom.xnb │ │ │ ├── fire_truck.xnb │ │ │ └── health.xnb │ │ ├── sprite_sheet.plist │ │ └── sprite_sheet.png │ └── wp8 │ │ ├── bg.xnb │ │ ├── music │ │ ├── background.wma │ │ ├── background.xnb │ │ ├── bombFail.xnb │ │ ├── bombRelease.xnb │ │ ├── boom.xnb │ │ ├── fire_truck.xnb │ │ └── health.xnb │ │ ├── sprite_sheet.plist │ │ └── sprite_sheet.xnb │ ├── SkyDefense.sln │ ├── SkyDefenseWP8.sln │ ├── SkyDefenseWin8.sln │ ├── win32 │ ├── AppDelegate.cs │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── Game.ico │ ├── Game1.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SkyDefense.Windows.csproj │ ├── win8 │ ├── AppDelegate.cs │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── Package.appxmanifest │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SkyDefense.Store.csproj │ └── wp8 │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppDelegate.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── Content │ └── fonts │ │ └── MarkerFelt-22.xnb │ ├── GamePage.xaml │ ├── GamePage.xaml.cs │ ├── LocalizedStrings.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ └── SkyDefense.WP8.csproj ├── SneakyJoystick ├── NuGet │ └── SneakyJoystick.nuspec ├── README.md ├── example │ ├── Common │ │ └── IntroLayer.cs │ ├── Content │ │ ├── HD │ │ │ └── animations │ │ │ │ ├── AnimBear.plist │ │ │ │ ├── AnimBear.png │ │ │ │ ├── AnimBear.xnb │ │ │ │ ├── monkey.plist │ │ │ │ ├── monkey.png │ │ │ │ └── monkey.xnb │ │ ├── SD │ │ │ └── animations │ │ │ │ ├── AnimBear.plist │ │ │ │ ├── AnimBear.png │ │ │ │ ├── AnimBear.xnb │ │ │ │ ├── monkey.plist │ │ │ │ ├── monkey.png │ │ │ │ └── monkey.xnb │ │ ├── control │ │ │ ├── button_pressed.xnb │ │ │ ├── button_release.xnb │ │ │ ├── joystick_background.xnb │ │ │ └── joystick_thumb.xnb │ │ ├── fonts │ │ │ └── MarkerFelt-22.xnb │ │ ├── magic-beard.plist │ │ ├── magic-beard.xnb │ │ ├── sound_oso.mp3 │ │ └── sound_oso.xnb │ ├── SneakyJoystickExample.sln │ ├── SneakyJoystickExampleMac.sln │ ├── SneakyJoystickExampleWP8.sln │ ├── macosx │ │ ├── Info.plist │ │ ├── Program.cs │ │ └── SneakyJoystickExampleMac.csproj │ ├── win32 │ │ ├── AppDelegate.cs │ │ ├── Content │ │ │ └── fonts │ │ │ │ └── MarkerFelt-22.xnb │ │ ├── Game.ico │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SneakyJoystickExample.Windows.csproj │ │ └── app.config │ └── wp8 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppDelegate.cs │ │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ │ ├── GamePage.xaml │ │ ├── GamePage.xaml.cs │ │ ├── LocalizedStrings.cs │ │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ │ └── SneakyJoystickExample.WP8.csproj ├── screenshots │ └── SneakyMonkey-Mac.png ├── src │ └── SneakyJoystick │ │ ├── Common │ │ ├── ColoredCircleSprite.cs │ │ ├── SneakyButtonControl.cs │ │ ├── SneakyButtonControlSkinnedBase.cs │ │ ├── SneakyJoystickControl.cs │ │ ├── SneakyJoystickControlSkinnedBase.cs │ │ └── SneakyPanelControl.cs │ │ ├── SneakyJoystick.sln │ │ ├── SneakyJoystickMac.sln │ │ ├── SneakyJoystickWP8.sln │ │ ├── win32 │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SneakyJoystick.csproj │ │ └── wp8 │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SneakyJoystick.WP8.csproj └── tools │ └── NuGet │ └── NuGet.exe ├── Spine ├── README.md ├── example │ ├── Common │ │ └── src │ │ │ ├── AppDelegate.cs │ │ │ ├── Game1.cs │ │ │ ├── GoblinLayer.cs │ │ │ └── SpineBoyLayer.cs │ ├── Content │ │ ├── fonts │ │ │ ├── MarkerFelt-22.xnb │ │ │ ├── arial-12.xnb │ │ │ └── arial-24.xnb │ │ ├── goblins-ffd.atlas │ │ ├── goblins-ffd.json │ │ ├── goblins-ffd.png │ │ ├── goblins-ffd.xnb │ │ ├── goblins.atlas │ │ ├── goblins.json │ │ ├── goblins.png │ │ ├── goblins.xnb │ │ ├── mariotest.json │ │ ├── spineboy.atlas │ │ ├── spineboy.json │ │ ├── spineboy.png │ │ ├── spineboy.xnb │ │ ├── walk1.png │ │ ├── walk1.xnb │ │ ├── wallpaper.png │ │ └── wallpaper.xnb │ ├── macosx │ │ ├── Info.plist │ │ ├── Program.cs │ │ └── spine-cocossharp-macosx.csproj │ ├── spine-cocossharp-macosx.sln │ ├── spine-cocossharpDX.sln │ ├── spine-cocossharpWP8.sln │ ├── spine_portable │ │ ├── spine_portable.sln │ │ └── spine_portable │ │ │ ├── spine_portable.Android │ │ │ ├── Assets │ │ │ │ └── AboutAssets.txt │ │ │ ├── MainActivity.cs │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── AboutResources.txt │ │ │ │ ├── Resource.designer.cs │ │ │ │ ├── drawable │ │ │ │ │ └── Icon.png │ │ │ │ └── values │ │ │ │ │ └── Strings.xml │ │ │ ├── packages.config │ │ │ └── spine_portable.Android.csproj │ │ │ ├── spine_portable.Common │ │ │ ├── GameAppDelegate.cs │ │ │ ├── packages.config │ │ │ └── spine_portable.Common.csproj │ │ │ └── spine_portable.iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── Resources │ │ │ └── Default-568h@2x.png │ │ │ ├── packages.config │ │ │ └── spine_portable.iOS.csproj │ ├── spine_portableVS │ │ ├── spine_portableVS.sln │ │ └── spine_portableVS │ │ │ ├── spine_portableVS.Droid │ │ │ ├── Assets │ │ │ │ ├── AboutAssets.txt │ │ │ │ └── Content │ │ │ │ │ └── fonts │ │ │ │ │ └── MarkerFelt-22.xnb │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── AboutResources.txt │ │ │ │ ├── Drawable │ │ │ │ │ ├── Splash.png │ │ │ │ │ └── icon.png │ │ │ │ ├── Resource.Designer.cs │ │ │ │ └── Values │ │ │ │ │ ├── Strings.xml │ │ │ │ │ └── Styles.xml │ │ │ ├── packages.config │ │ │ └── spine_portableVS.Droid.csproj │ │ │ ├── spine_portableVS.WinPhone │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ ├── Logo.scale-240.png │ │ │ │ ├── SmallLogo.scale-240.png │ │ │ │ ├── SplashScreen.scale-240.png │ │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ │ ├── StoreLogo.scale-240.png │ │ │ │ └── WideLogo.scale-240.png │ │ │ ├── Content │ │ │ │ └── fonts │ │ │ │ │ └── MarkerFelt-22.xnb │ │ │ ├── GamePage.xaml │ │ │ ├── GamePage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── packages.config │ │ │ └── spine_portableVS.WinPhone.csproj │ │ │ ├── spine_portableVS.iOS │ │ │ ├── Content │ │ │ │ └── fonts │ │ │ │ │ └── MarkerFelt-22.xnb │ │ │ ├── Game.ico │ │ │ ├── GameThumbnail.png │ │ │ ├── Info.plist │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── packages.config │ │ │ └── spine_portableVS.iOS.csproj │ │ │ └── spine_portableVS │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── packages.config │ │ │ └── spine_portableVS.csproj │ ├── win32 │ │ ├── Game.ico │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SpineCocosSharpExampleDX.csproj │ │ └── packages.config │ └── wp8 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppDelegate.cs │ │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ │ ├── GamePage.xaml │ │ ├── GamePage.xaml.cs │ │ ├── LocalizedStrings.cs │ │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ │ └── SpineCocosSharpExample.csproj └── src │ └── SpineCocosSharp │ ├── SpineCocosSharp-Mac.sln │ ├── SpineCocosSharp.sln │ ├── SpineCocosSharp │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SpineCocosSharp.csproj │ ├── SpineCocosSharpDX.csproj │ ├── SpineCocosSharpMac.csproj │ ├── SpineCocosSharpShared.projitems │ ├── SpineCocosSharpShared.shproj │ ├── SpineCocosSharpShared.sln │ ├── SpineCocosSharpWP8.csproj │ ├── spine-cocossharp │ │ ├── CCSkeleton.cs │ │ ├── CCSkeletonAnimation.cs │ │ └── CocosSharpTextureLoader.cs │ └── spine-csharp │ │ └── src │ │ ├── Animation.cs │ │ ├── AnimationState.cs │ │ ├── AnimationStateData.cs │ │ ├── Atlas.cs │ │ ├── Attachments │ │ ├── AtlasAttachmentLoader.cs │ │ ├── Attachment.cs │ │ ├── AttachmentLoader.cs │ │ ├── AttachmentType.cs │ │ ├── BoundingBoxAttachment.cs │ │ ├── MeshAttachment.cs │ │ ├── RegionAttachment.cs │ │ └── SkinnedMeshAttachment.cs │ │ ├── Bone.cs │ │ ├── BoneData.cs │ │ ├── Event.cs │ │ ├── EventData.cs │ │ ├── Json.cs │ │ ├── Skeleton.cs │ │ ├── SkeletonBounds.cs │ │ ├── SkeletonData.cs │ │ ├── SkeletonJson.cs │ │ ├── Skin.cs │ │ ├── Slot.cs │ │ └── SlotData.cs │ ├── SpineCocosSharpWP8.sln │ └── wp8 │ ├── Properties │ └── AssemblyInfo.cs │ └── SpineCocosSharp.csproj ├── TextField ├── TextField.sln └── TextField │ ├── TextField.Droid │ ├── Assets │ │ ├── AboutAssets.txt │ │ └── Content │ │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── Program.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Drawable │ │ │ ├── Splash.png │ │ │ └── icon.png │ │ ├── Resource.Designer.cs │ │ └── Values │ │ │ ├── Strings.xml │ │ │ └── Styles.xml │ ├── TextField.Droid.csproj │ └── packages.config │ ├── TextField.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Logo.scale-240.png │ │ ├── SmallLogo.scale-240.png │ │ ├── SplashScreen.scale-240.png │ │ ├── Square71x71Logo.scale-240.png │ │ ├── StoreLogo.scale-240.png │ │ └── WideLogo.scale-240.png │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── GamePage.xaml │ ├── GamePage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TextField.WinPhone.csproj │ └── packages.config │ ├── TextField.iOS │ ├── Content │ │ └── fonts │ │ │ └── MarkerFelt-22.xnb │ ├── Game.ico │ ├── GameThumbnail.png │ ├── Info.plist │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TextField.iOS.csproj │ └── packages.config │ └── TextField │ ├── AppDelegate.cs │ ├── IntroLayer.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── TextField.csproj │ └── packages.config ├── TileMapTest.iOS ├── TileMapTest.iOS.sln └── TileMapTest.iOS │ ├── AppDelegate.cs │ ├── Content │ ├── fonts │ │ └── MarkerFelt-22.xnb │ └── tilemaps │ │ ├── iso-test-zorder.tmx │ │ └── iso-test.png │ ├── Game.ico │ ├── GameThumbnail.png │ ├── Info.plist │ ├── IntroLayer.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── TileMapTest.Raw.csproj │ └── packages.config └── TileMapTest ├── .nuget └── packages.config ├── TileMapTest.sln └── TileMapTest ├── App.xaml ├── App.xaml.cs ├── AppDelegate.cs ├── Assets ├── AlignmentGrid.png ├── ApplicationIcon.png └── Tiles │ ├── FlipCycleTileLarge.png │ ├── FlipCycleTileMedium.png │ ├── FlipCycleTileSmall.png │ ├── IconicTileMediumLarge.png │ └── IconicTileSmall.png ├── Content ├── TileMapTest.mgcb ├── fonts │ └── MarkerFelt-22.xnb └── tilemaps │ ├── grass-tiles-2-small.png │ ├── grass-tiles-2-small.xnb │ ├── iso-test-zorder.tmx │ ├── iso-test-zorder.xnb │ ├── iso-test.png │ ├── iso-test.xnb │ ├── test.tmx │ └── test.xnb ├── GamePage.xaml ├── GamePage.xaml.cs ├── IntroLayer.cs ├── LocalizedStrings.cs ├── Properties ├── AppManifest.xml ├── AssemblyInfo.cs └── WMAppManifest.xml ├── Resources ├── AppResources.Designer.cs └── AppResources.resx ├── TileMapTest.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /AirHockey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/README.md -------------------------------------------------------------------------------- /AirHockey/src/AirHockey.WP8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/AirHockey.WP8.sln -------------------------------------------------------------------------------- /AirHockey/src/AirHockey.Win8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/AirHockey.Win8.sln -------------------------------------------------------------------------------- /AirHockey/src/AirHockey.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/AirHockey.sln -------------------------------------------------------------------------------- /AirHockey/src/Common/GameSprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Common/GameSprite.cs -------------------------------------------------------------------------------- /AirHockey/src/Common/IntroLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Common/IntroLayer.cs -------------------------------------------------------------------------------- /AirHockey/src/Content/basic/court.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/basic/court.png -------------------------------------------------------------------------------- /AirHockey/src/Content/basic/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/basic/logo.png -------------------------------------------------------------------------------- /AirHockey/src/Content/basic/mallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/basic/mallet.png -------------------------------------------------------------------------------- /AirHockey/src/Content/basic/puck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/basic/puck.png -------------------------------------------------------------------------------- /AirHockey/src/Content/basic/sounds/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/basic/sounds/hit.wav -------------------------------------------------------------------------------- /AirHockey/src/Content/basic/sounds/hit.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/basic/sounds/hit.xnb -------------------------------------------------------------------------------- /AirHockey/src/Content/basic/sounds/score.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/basic/sounds/score.wav -------------------------------------------------------------------------------- /AirHockey/src/Content/basic/sounds/score.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/basic/sounds/score.xnb -------------------------------------------------------------------------------- /AirHockey/src/Content/wp8/court.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/wp8/court.xnb -------------------------------------------------------------------------------- /AirHockey/src/Content/wp8/logo.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/wp8/logo.xnb -------------------------------------------------------------------------------- /AirHockey/src/Content/wp8/mallet.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/wp8/mallet.xnb -------------------------------------------------------------------------------- /AirHockey/src/Content/wp8/puck.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/wp8/puck.xnb -------------------------------------------------------------------------------- /AirHockey/src/Content/wp8/sounds/hit.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/wp8/sounds/hit.xnb -------------------------------------------------------------------------------- /AirHockey/src/Content/wp8/sounds/score.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/Content/wp8/sounds/score.xnb -------------------------------------------------------------------------------- /AirHockey/src/win32/AirHockey.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win32/AirHockey.Windows.csproj -------------------------------------------------------------------------------- /AirHockey/src/win32/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win32/AppDelegate.cs -------------------------------------------------------------------------------- /AirHockey/src/win32/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win32/Game.ico -------------------------------------------------------------------------------- /AirHockey/src/win32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win32/Program.cs -------------------------------------------------------------------------------- /AirHockey/src/win32/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win32/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AirHockey/src/win8/AirHockey.Store.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win8/AirHockey.Store.csproj -------------------------------------------------------------------------------- /AirHockey/src/win8/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win8/AppDelegate.cs -------------------------------------------------------------------------------- /AirHockey/src/win8/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win8/Assets/Logo.png -------------------------------------------------------------------------------- /AirHockey/src/win8/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win8/Assets/SmallLogo.png -------------------------------------------------------------------------------- /AirHockey/src/win8/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win8/Assets/SplashScreen.png -------------------------------------------------------------------------------- /AirHockey/src/win8/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win8/Assets/StoreLogo.png -------------------------------------------------------------------------------- /AirHockey/src/win8/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win8/Package.appxmanifest -------------------------------------------------------------------------------- /AirHockey/src/win8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win8/Program.cs -------------------------------------------------------------------------------- /AirHockey/src/win8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/win8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AirHockey/src/wp8/AirHockey.WP8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/AirHockey.WP8.csproj -------------------------------------------------------------------------------- /AirHockey/src/wp8/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/App.xaml -------------------------------------------------------------------------------- /AirHockey/src/wp8/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/App.xaml.cs -------------------------------------------------------------------------------- /AirHockey/src/wp8/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/AppDelegate.cs -------------------------------------------------------------------------------- /AirHockey/src/wp8/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /AirHockey/src/wp8/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /AirHockey/src/wp8/Content/fonts/MarkerFelt-22.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/Content/fonts/MarkerFelt-22.xnb -------------------------------------------------------------------------------- /AirHockey/src/wp8/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/GamePage.xaml -------------------------------------------------------------------------------- /AirHockey/src/wp8/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/GamePage.xaml.cs -------------------------------------------------------------------------------- /AirHockey/src/wp8/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/LocalizedStrings.cs -------------------------------------------------------------------------------- /AirHockey/src/wp8/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/Properties/AppManifest.xml -------------------------------------------------------------------------------- /AirHockey/src/wp8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AirHockey/src/wp8/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /AirHockey/src/wp8/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AirHockey/src/wp8/Resources/AppResources.resx -------------------------------------------------------------------------------- /AngryNinjas/src/AngryNinjas-Mac.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/AngryNinjas-Mac.sln -------------------------------------------------------------------------------- /AngryNinjas/src/AngryNinjas.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/AngryNinjas.sln -------------------------------------------------------------------------------- /AngryNinjas/src/AngryNinjas/AngryNinjas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/AngryNinjas/AngryNinjas.csproj -------------------------------------------------------------------------------- /AngryNinjas/src/AngryNinjas/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/AngryNinjas/AppDelegate.cs -------------------------------------------------------------------------------- /AngryNinjas/src/AngryNinjas/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/AngryNinjas/Assets/Logo.png -------------------------------------------------------------------------------- /AngryNinjas/src/AngryNinjas/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/AngryNinjas/Assets/SmallLogo.png -------------------------------------------------------------------------------- /AngryNinjas/src/AngryNinjas/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/AngryNinjas/Assets/StoreLogo.png -------------------------------------------------------------------------------- /AngryNinjas/src/AngryNinjas/Extensions/CCDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/AngryNinjas/Extensions/CCDraw.cs -------------------------------------------------------------------------------- /AngryNinjas/src/AngryNinjas/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/AngryNinjas/Package.appxmanifest -------------------------------------------------------------------------------- /AngryNinjas/src/AngryNinjas/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/AngryNinjas/Program.cs -------------------------------------------------------------------------------- /AngryNinjas/src/AngryNinjasWP8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/AngryNinjasWP8.sln -------------------------------------------------------------------------------- /AngryNinjas/src/AngryNinjasWin8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/AngryNinjasWin8.sln -------------------------------------------------------------------------------- /AngryNinjas/src/Common/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/AppDelegate.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Custom/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Custom/Constants.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Custom/CustomAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Custom/CustomAnimation.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Custom/GameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Custom/GameData.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Custom/GameSounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Custom/GameSounds.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Entities/BodyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Entities/BodyNode.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Entities/Enemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Entities/Enemy.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Entities/Ninja.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Entities/Ninja.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Entities/StackObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Entities/StackObject.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Entities/StartPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Entities/StartPlatform.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Entities/TheStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Entities/TheStack.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Layers/GroundPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Layers/GroundPlane.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Layers/TheMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Layers/TheMenu.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Levels/IntroLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Levels/IntroLayer.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Levels/TheLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Levels/TheLevel.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Common/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Common/Program.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Extensions/CCDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Extensions/CCDraw.cs -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/10000points-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/10000points-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/10000points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/10000points.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/1000points-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/1000points-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/1000points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/1000points.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/100points-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/100points-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/100points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/100points.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/5000points-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/5000points-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/5000points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/5000points.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/500points-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/500points-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/500points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/500points.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Default.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Default_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Default_hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Default_ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Default_ipad.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Icon-144.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Icon-72.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Icon-Small-50.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Icon-Small.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Icon-Small@2x.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Icon.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Icon@2x.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/IntroLayer-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/IntroLayer-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/IntroLayer-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/IntroLayer-ipad.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/IntroLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/IntroLayer.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/birds.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/birds.mp3 -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/birds.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/birds.wma -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/birds.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/birds.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/bloop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/bloop.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/break1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/break1.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/break2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/break2.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/break3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/break3.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/drums.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/drums.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/frogs.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/frogs.mp3 -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/frogs.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/frogs.wma -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/frogs.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/frogs.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/gong.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/gong.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/grunt1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/grunt1.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/grunt2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/grunt2.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/grunt3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/grunt3.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/grunt4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/grunt4.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/grunt5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/grunt5.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/grunt6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/grunt6.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/grunt7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/grunt7.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/grunt8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/grunt8.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/impact1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/impact1.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/impact2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/impact2.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/impact3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/impact3.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/impact4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/impact4.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/impact5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/impact5.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/Sounds/whoosh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/Sounds/whoosh.wav -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ambientFX-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ambientFX-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ambientFX-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ambientFX-ipad.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ambientFX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ambientFX.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ambientFX_dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ambientFX_dim.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/blocks-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/blocks-ipad.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/blocks.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/circle-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/circle-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/circle.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/circleShape-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/circleShape-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/circleShape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/circleShape.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/explosion_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/explosion_0001.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/explosion_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/explosion_0002.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/explosion_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/explosion_0003.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/explosion_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/explosion_0004.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/explosion_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/explosion_0005.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/explosion_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/explosion_0006.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/explosion_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/explosion_0007.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/explosion_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/explosion_0008.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/explosion_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/explosion_0009.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/explosion_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/explosion_0010.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/explosion_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/explosion_0011.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/fire.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/fps_images-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/fps_images-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/fps_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/fps_images.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/gameMenu-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/gameMenu-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/gameMenu-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/gameMenu-ipad.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/gameMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/gameMenu.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/grid_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/grid_example.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ground_plane-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ground_plane-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ground_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ground_plane.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/hexagonShape-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/hexagonShape-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/hexagonShape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/hexagonShape.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/hexagonShape2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/hexagonShape2.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton1-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton1-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton1.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton10.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton2-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton2-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton2.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton3-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton3-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton3.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton4-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton4-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton4.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton5-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton5-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton5.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton6-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton6-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton6.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton7-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton7-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton7.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton8-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton8-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton8.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton9-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton9-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelButton9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelButton9.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelLocked-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelLocked-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/levelLocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/levelLocked.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/marbleSquare-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/marbleSquare-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/marbleSquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/marbleSquare.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/menu_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/menu_background.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/mutantPepper-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/mutantPepper-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/mutantPepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/mutantPepper.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninjaBlue_air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninjaBlue_air.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninjaBlue_blink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninjaBlue_blink.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninjaBlue_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninjaBlue_roll.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninjaBrown_air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninjaBrown_air.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninjaBrown_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninjaBrown_roll.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninjaGreen_air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninjaGreen_air.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninjaGreen_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninjaGreen_roll.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninjaRed_air-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninjaRed_air-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninjaRed_air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninjaRed_air.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninjaRed_blink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninjaRed_blink.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninjaRed_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninjaRed_roll.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninja_air-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninja_air-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninja_air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninja_air.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninja_blink-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninja_blink-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninja_blink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninja_blink.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninja_in_sling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninja_in_sling.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninja_on_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninja_on_ground.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninja_roll-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninja_roll-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninja_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninja_roll.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninja_roll0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninja_roll0001.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninja_roll0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninja_roll0002.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninja_roll0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninja_roll0003.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/ninja_standing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/ninja_standing.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/octogonShape-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/octogonShape-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/octogonShape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/octogonShape.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/parallelogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/parallelogram.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/parallelogram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/parallelogram2.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/pentagon-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/pentagon-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/pentagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/pentagon.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/platform-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/platform-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/platform.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0001-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0001-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0001.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0002-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0002-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0002.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0003-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0003-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0003.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0004-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0004-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0004.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0005-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0005-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0005.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0006-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0006-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0006.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0007-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0007-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/puffs_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/puffs_0007.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/slingshot_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/slingshot_front.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/soundFX-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/soundFX-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/soundFX-ipad-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/soundFX-ipad-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/soundFX-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/soundFX-ipad.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/soundFX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/soundFX.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/soundFX_dim-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/soundFX_dim-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/soundFX_dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/soundFX_dim.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/stonePillar-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/stonePillar-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/stonePillar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/stonePillar.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/strap-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/strap-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/strap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/strap.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/strapBack-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/strapBack-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/strapBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/strapBack.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/strapEmpty-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/strapEmpty-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/strapEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/strapEmpty.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/trapezoid-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/trapezoid-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/trapezoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/trapezoid.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/trapezoid2-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/trapezoid2-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/trapezoid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/trapezoid2.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/triangleLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/triangleLarge.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/triangleTall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/triangleTall.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/voiceFX-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/voiceFX-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/voiceFX-ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/voiceFX-ipad.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/voiceFX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/voiceFX.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/voiceFX_dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/voiceFX_dim.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/woodShape1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/woodShape1.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/woodShape2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/woodShape2.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/woodShape3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/woodShape3.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/ios/woodShape4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/ios/woodShape4.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/1000points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/1000points.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/100points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/100points.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/5000points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/5000points.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/500points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/500points.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/Default.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/Default_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/Default_hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/Icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/Icon-144.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/Icon-72.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/Icon-Small.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/Icon.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/Icon@2x.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/IntroLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/IntroLayer.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/ambientFX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/ambientFX.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/blocks.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/circle-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/circle-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/circle.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/fire.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/fps_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/fps_images.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/gameMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/gameMenu.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/ninja_air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/ninja_air.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/ninja_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/ninja_roll.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/pentagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/pentagon.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/platform.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/puffs_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/puffs_0001.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/puffs_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/puffs_0002.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/puffs_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/puffs_0003.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/puffs_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/puffs_0004.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/puffs_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/puffs_0005.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/puffs_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/puffs_0006.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/puffs_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/puffs_0007.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/soundFX-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/soundFX-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/soundFX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/soundFX.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/strap-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/strap-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/strap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/strap.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/strapBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/strapBack.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/strapEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/strapEmpty.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/trapezoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/trapezoid.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/trapezoid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/trapezoid2.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/voiceFX-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/voiceFX-hd.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/voiceFX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/voiceFX.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/woodShape1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/woodShape1.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/woodShape2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/woodShape2.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/woodShape3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/woodShape3.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/win32/woodShape4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/win32/woodShape4.png -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/10000points.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/10000points.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/1000points.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/1000points.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/100points-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/100points-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/100points.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/100points.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/5000points.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/5000points.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/500points-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/500points-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/500points.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/500points.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Default.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Default.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Default_hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Default_hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Default_ipad.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Default_ipad.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Emulogic-10.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Emulogic-10.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Emulogic-15.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Emulogic-15.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Emulogic-20.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Emulogic-20.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Emulogic-25.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Emulogic-25.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Emulogic-30.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Emulogic-30.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Icon-144.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Icon-144.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Icon-72.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Icon-72.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Icon-Small.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Icon-Small.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Icon.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Icon.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Icon@2x.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Icon@2x.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/IntroLayer.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/IntroLayer.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Sounds/birds.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Sounds/birds.wma -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Sounds/birds.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Sounds/birds.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Sounds/bloop.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Sounds/bloop.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Sounds/drums.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Sounds/drums.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Sounds/frogs.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Sounds/frogs.wma -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Sounds/frogs.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Sounds/frogs.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/Sounds/gong.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/Sounds/gong.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/ambientFX-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/ambientFX-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/ambientFX.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/ambientFX.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/blocks-ipad.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/blocks-ipad.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/blocks.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/blocks.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/circle-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/circle-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/circle.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/circle.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/circleShape.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/circleShape.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/fire.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/fire.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/fps_images.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/fps_images.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/gameMenu-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/gameMenu-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/gameMenu.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/gameMenu.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/grid_example.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/grid_example.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/ground_plane.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/ground_plane.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/hexagonShape.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/hexagonShape.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/levelButton1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/levelButton1.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/levelButton2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/levelButton2.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/levelButton3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/levelButton3.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/levelButton4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/levelButton4.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/levelButton5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/levelButton5.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/levelButton6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/levelButton6.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/levelButton7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/levelButton7.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/levelButton8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/levelButton8.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/levelButton9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/levelButton9.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/levelLocked.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/levelLocked.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/marbleSquare.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/marbleSquare.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/mutantPepper.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/mutantPepper.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/ninjaRed_air.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/ninjaRed_air.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/ninja_air-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/ninja_air-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/ninja_air.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/ninja_air.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/ninja_blink.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/ninja_blink.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/ninja_roll.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/ninja_roll.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/octogonShape.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/octogonShape.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/pentagon-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/pentagon-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/pentagon.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/pentagon.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/platform-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/platform-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/platform.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/platform.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/puffs_0001.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/puffs_0001.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/puffs_0002.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/puffs_0002.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/puffs_0003.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/puffs_0003.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/puffs_0004.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/puffs_0004.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/puffs_0005.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/puffs_0005.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/puffs_0006.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/puffs_0006.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/puffs_0007.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/puffs_0007.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/soundFX-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/soundFX-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/soundFX-ipad.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/soundFX-ipad.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/soundFX.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/soundFX.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/soundFX_dim.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/soundFX_dim.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/stonePillar.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/stonePillar.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/strap-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/strap-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/strap.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/strap.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/strapBack-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/strapBack-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/strapBack.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/strapBack.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/strapEmpty.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/strapEmpty.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/trapezoid-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/trapezoid-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/trapezoid.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/trapezoid.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/trapezoid2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/trapezoid2.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/triangleTall.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/triangleTall.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/voiceFX-hd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/voiceFX-hd.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/voiceFX-ipad.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/voiceFX-ipad.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/voiceFX.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/voiceFX.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/voiceFX_dim.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/voiceFX_dim.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/woodShape1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/woodShape1.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/woodShape2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/woodShape2.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/woodShape3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/woodShape3.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/Resources/wp8/woodShape4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/Resources/wp8/woodShape4.xnb -------------------------------------------------------------------------------- /AngryNinjas/src/macosx/AngryNinjas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/macosx/AngryNinjas.csproj -------------------------------------------------------------------------------- /AngryNinjas/src/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/macosx/Info.plist -------------------------------------------------------------------------------- /AngryNinjas/src/win32/AngryNinjas3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/win32/AngryNinjas3.csproj -------------------------------------------------------------------------------- /AngryNinjas/src/win32/Extensions/CCDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/win32/Extensions/CCDraw.cs -------------------------------------------------------------------------------- /AngryNinjas/src/win32/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/win32/Game.ico -------------------------------------------------------------------------------- /AngryNinjas/src/win8/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/win8/AppDelegate.cs -------------------------------------------------------------------------------- /AngryNinjas/src/win8/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/win8/Assets/Logo.png -------------------------------------------------------------------------------- /AngryNinjas/src/win8/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/win8/Assets/SmallLogo.png -------------------------------------------------------------------------------- /AngryNinjas/src/win8/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/win8/Assets/SplashScreen.png -------------------------------------------------------------------------------- /AngryNinjas/src/win8/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/win8/Assets/StoreLogo.png -------------------------------------------------------------------------------- /AngryNinjas/src/win8/Game1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/win8/Game1.cs -------------------------------------------------------------------------------- /AngryNinjas/src/win8/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/win8/Package.appxmanifest -------------------------------------------------------------------------------- /AngryNinjas/src/win8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/win8/Program.cs -------------------------------------------------------------------------------- /AngryNinjas/src/win8/SkyDefense.Store.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/win8/SkyDefense.Store.csproj -------------------------------------------------------------------------------- /AngryNinjas/src/wp8/AngryNinjas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/wp8/AngryNinjas.csproj -------------------------------------------------------------------------------- /AngryNinjas/src/wp8/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/wp8/App.xaml -------------------------------------------------------------------------------- /AngryNinjas/src/wp8/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/wp8/App.xaml.cs -------------------------------------------------------------------------------- /AngryNinjas/src/wp8/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/wp8/AppDelegate.cs -------------------------------------------------------------------------------- /AngryNinjas/src/wp8/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/wp8/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /AngryNinjas/src/wp8/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/wp8/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /AngryNinjas/src/wp8/Extensions/CCDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/wp8/Extensions/CCDraw.cs -------------------------------------------------------------------------------- /AngryNinjas/src/wp8/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/wp8/GamePage.xaml -------------------------------------------------------------------------------- /AngryNinjas/src/wp8/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/wp8/GamePage.xaml.cs -------------------------------------------------------------------------------- /AngryNinjas/src/wp8/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/wp8/LocalizedStrings.cs -------------------------------------------------------------------------------- /AngryNinjas/src/wp8/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/wp8/Properties/AppManifest.xml -------------------------------------------------------------------------------- /AngryNinjas/src/wp8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AngryNinjas/src/wp8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AudioSample/AudioSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/AudioSample/AudioSample.sln -------------------------------------------------------------------------------- /CSLilyPath/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/.nuget/NuGet.Config -------------------------------------------------------------------------------- /CSLilyPath/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/.nuget/NuGet.exe -------------------------------------------------------------------------------- /CSLilyPath/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/.nuget/NuGet.targets -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath.sln -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/CSLilyPath.iOS/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/CSLilyPath.iOS/Game.ico -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/CSLilyPath/IntroLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/CSLilyPath/IntroLayer.cs -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/CSLilyPath/TestLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/CSLilyPath/TestLayer.cs -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/LilyPath/Brush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/LilyPath/Brush.cs -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/LilyPath/DrawBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/LilyPath/DrawBatch.cs -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/LilyPath/DrawCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/LilyPath/DrawCache.cs -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/LilyPath/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/LilyPath/Enums.cs -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/LilyPath/GraphicsPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/LilyPath/GraphicsPath.cs -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/LilyPath/LilyPath.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/LilyPath/LilyPath.shproj -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/LilyPath/LineCapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/LilyPath/LineCapInfo.cs -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/LilyPath/PathBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/LilyPath/PathBuilder.cs -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/LilyPath/Pen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/LilyPath/Pen.cs -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/LilyPath/TextureBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/LilyPath/TextureBrush.cs -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/LilyPath/Triangulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/LilyPath/Triangulator.cs -------------------------------------------------------------------------------- /CSLilyPath/CSLilyPath/LilyPath/Utility/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/CSLilyPath/LilyPath/Utility/Pool.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Brush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Brush.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/DrawBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/DrawBatch.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/DrawCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/DrawCache.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Enums.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/GraphicsPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/GraphicsPath.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/LilyPath.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/LilyPath.csproj -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/LineCapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/LineCapInfo.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/PathBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/PathBuilder.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Pen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Pen.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Pens/GradientPen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Pens/GradientPen.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Pens/PathGradientPen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Pens/PathGradientPen.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Shapes/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Shapes/Grid.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/SolidColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/SolidColorBrush.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/TextureBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/TextureBrush.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Triangulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Triangulator.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Utility/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Utility/Buffer.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Utility/PenWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Utility/PenWorkspace.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Utility/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Utility/Pool.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Utility/Pools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Utility/Pools.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/Utility/ZeroList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/Utility/ZeroList.cs -------------------------------------------------------------------------------- /CSLilyPath/LilyPath/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/LilyPath/packages.config -------------------------------------------------------------------------------- /CSLilyPath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/README.md -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/Arcs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/Arcs1.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/Arcs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/Arcs2.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/ClosedArcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/ClosedArcs.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/Ellipses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/Ellipses.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/FilledArcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/FilledArcs.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/FilledEllipses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/FilledEllipses.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/FilledShapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/FilledShapes.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/GradientPens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/GradientPens.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/GraphicsPathOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/GraphicsPathOutline.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/GraphicsPathTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/GraphicsPathTest.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/GridShape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/GridShape.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/LilyPathLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/LilyPathLogo.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/LineCaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/LineCaps.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/OutlineShapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/OutlineShapes.png -------------------------------------------------------------------------------- /CSLilyPath/ScreenShots/TextureFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CSLilyPath/ScreenShots/TextureFill.png -------------------------------------------------------------------------------- /CocosSharpBox2d/CocosSharpBox2d.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CocosSharpBox2d/CocosSharpBox2d.sln -------------------------------------------------------------------------------- /CocosSharpBox2d/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/CocosSharpBox2d/readme.md -------------------------------------------------------------------------------- /DrawNodeBuffer/DrawNodeBuffer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/DrawNodeBuffer/DrawNodeBuffer.sln -------------------------------------------------------------------------------- /DynamicTextures/DynamicTextures.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/DynamicTextures/DynamicTextures.sln -------------------------------------------------------------------------------- /DynamicTextures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/DynamicTextures/README.md -------------------------------------------------------------------------------- /GoneBananas/GoneBananas-VS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananas-VS.sln -------------------------------------------------------------------------------- /GoneBananas/GoneBananas.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananas.sln -------------------------------------------------------------------------------- /GoneBananas/GoneBananasAndroid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananasAndroid/MainActivity.cs -------------------------------------------------------------------------------- /GoneBananas/GoneBananasAndroid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananasAndroid/packages.config -------------------------------------------------------------------------------- /GoneBananas/GoneBananasShared/GameLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananasShared/GameLayer.cs -------------------------------------------------------------------------------- /GoneBananas/GoneBananasShared/GameOverLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananasShared/GameOverLayer.cs -------------------------------------------------------------------------------- /GoneBananas/GoneBananasWindowsDX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananasWindowsDX.sln -------------------------------------------------------------------------------- /GoneBananas/GoneBananasWindowsWP8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananasWindowsWP8.sln -------------------------------------------------------------------------------- /GoneBananas/GoneBananasWindowsWin8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananasWindowsWin8.sln -------------------------------------------------------------------------------- /GoneBananas/GoneBananasiOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananasiOS/AppDelegate.cs -------------------------------------------------------------------------------- /GoneBananas/GoneBananasiOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananasiOS/Info.plist -------------------------------------------------------------------------------- /GoneBananas/GoneBananasiOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananasiOS/Main.cs -------------------------------------------------------------------------------- /GoneBananas/GoneBananasiOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/GoneBananasiOS/packages.config -------------------------------------------------------------------------------- /GoneBananas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/README.md -------------------------------------------------------------------------------- /GoneBananas/Walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/Walkthrough.md -------------------------------------------------------------------------------- /GoneBananas/screenshots/GameOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/screenshots/GameOver.png -------------------------------------------------------------------------------- /GoneBananas/screenshots/GameStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/screenshots/GameStart.png -------------------------------------------------------------------------------- /GoneBananas/screenshots/GoneBananas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/screenshots/GoneBananas.png -------------------------------------------------------------------------------- /GoneBananas/win32/Content/Sounds/tap.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/win32/Content/Sounds/tap.xnb -------------------------------------------------------------------------------- /GoneBananas/win32/Content/fonts/arial-22.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/win32/Content/fonts/arial-22.xnb -------------------------------------------------------------------------------- /GoneBananas/win32/Content/hd/balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/win32/Content/hd/balls.png -------------------------------------------------------------------------------- /GoneBananas/win32/Content/hd/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/win32/Content/hd/cloud.png -------------------------------------------------------------------------------- /GoneBananas/win32/Content/hd/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/win32/Content/hd/grass.png -------------------------------------------------------------------------------- /GoneBananas/win32/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/win32/Game.ico -------------------------------------------------------------------------------- /GoneBananas/win32/Game1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/win32/Game1.cs -------------------------------------------------------------------------------- /GoneBananas/win32/GoneBananas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/win32/GoneBananas.csproj -------------------------------------------------------------------------------- /GoneBananas/win32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/win32/Program.cs -------------------------------------------------------------------------------- /GoneBananas/win32/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/win32/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GoneBananas/windows8/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/windows8/Assets/Logo.png -------------------------------------------------------------------------------- /GoneBananas/windows8/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/windows8/Assets/SmallLogo.png -------------------------------------------------------------------------------- /GoneBananas/windows8/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/windows8/Assets/SplashScreen.png -------------------------------------------------------------------------------- /GoneBananas/windows8/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/windows8/Assets/StoreLogo.png -------------------------------------------------------------------------------- /GoneBananas/windows8/Content/Sounds/tap.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/windows8/Content/Sounds/tap.xnb -------------------------------------------------------------------------------- /GoneBananas/windows8/Content/hd/balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/windows8/Content/hd/balls.png -------------------------------------------------------------------------------- /GoneBananas/windows8/Content/hd/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/windows8/Content/hd/cloud.png -------------------------------------------------------------------------------- /GoneBananas/windows8/Content/hd/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/windows8/Content/hd/grass.png -------------------------------------------------------------------------------- /GoneBananas/windows8/GoneBananas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/windows8/GoneBananas.csproj -------------------------------------------------------------------------------- /GoneBananas/windows8/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/windows8/Package.appxmanifest -------------------------------------------------------------------------------- /GoneBananas/windows8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/windows8/Program.cs -------------------------------------------------------------------------------- /GoneBananas/wp8/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/App.xaml -------------------------------------------------------------------------------- /GoneBananas/wp8/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/App.xaml.cs -------------------------------------------------------------------------------- /GoneBananas/wp8/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /GoneBananas/wp8/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /GoneBananas/wp8/Content/Sounds/tap.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/Content/Sounds/tap.xnb -------------------------------------------------------------------------------- /GoneBananas/wp8/Content/fonts/arial-22.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/Content/fonts/arial-22.xnb -------------------------------------------------------------------------------- /GoneBananas/wp8/Content/hd/balls.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/Content/hd/balls.xnb -------------------------------------------------------------------------------- /GoneBananas/wp8/Content/hd/cloud.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/Content/hd/cloud.xnb -------------------------------------------------------------------------------- /GoneBananas/wp8/Content/hd/grass.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/Content/hd/grass.xnb -------------------------------------------------------------------------------- /GoneBananas/wp8/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/GamePage.xaml -------------------------------------------------------------------------------- /GoneBananas/wp8/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/GamePage.xaml.cs -------------------------------------------------------------------------------- /GoneBananas/wp8/GoneBananas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/GoneBananas.csproj -------------------------------------------------------------------------------- /GoneBananas/wp8/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/LocalizedStrings.cs -------------------------------------------------------------------------------- /GoneBananas/wp8/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/Properties/AppManifest.xml -------------------------------------------------------------------------------- /GoneBananas/wp8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GoneBananas/wp8/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /GoneBananas/wp8/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas/wp8/Resources/AppResources.resx -------------------------------------------------------------------------------- /GoneBananas2/GoneBananas-VS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/GoneBananas-VS.sln -------------------------------------------------------------------------------- /GoneBananas2/GoneBananas.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/GoneBananas.sln -------------------------------------------------------------------------------- /GoneBananas2/GoneBananasShared/GameLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/GoneBananasShared/GameLayer.cs -------------------------------------------------------------------------------- /GoneBananas2/GoneBananasWindowsDX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/GoneBananasWindowsDX.sln -------------------------------------------------------------------------------- /GoneBananas2/GoneBananasWindowsWP8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/GoneBananasWindowsWP8.sln -------------------------------------------------------------------------------- /GoneBananas2/GoneBananasWindowsWin8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/GoneBananasWindowsWin8.sln -------------------------------------------------------------------------------- /GoneBananas2/GoneBananasiOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/GoneBananasiOS/AppDelegate.cs -------------------------------------------------------------------------------- /GoneBananas2/GoneBananasiOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/GoneBananasiOS/Entitlements.plist -------------------------------------------------------------------------------- /GoneBananas2/GoneBananasiOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/GoneBananasiOS/Info.plist -------------------------------------------------------------------------------- /GoneBananas2/GoneBananasiOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/GoneBananasiOS/Main.cs -------------------------------------------------------------------------------- /GoneBananas2/GoneBananasiOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/GoneBananasiOS/packages.config -------------------------------------------------------------------------------- /GoneBananas2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/README.md -------------------------------------------------------------------------------- /GoneBananas2/WormHoleSharp/Wormhole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/WormHoleSharp/Wormhole.cs -------------------------------------------------------------------------------- /GoneBananas2/WormHoleSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/WormHoleSharp/packages.config -------------------------------------------------------------------------------- /GoneBananas2/screenshots/GameOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/screenshots/GameOver.png -------------------------------------------------------------------------------- /GoneBananas2/screenshots/GameStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/screenshots/GameStart.png -------------------------------------------------------------------------------- /GoneBananas2/screenshots/GoneBananas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/screenshots/GoneBananas.png -------------------------------------------------------------------------------- /GoneBananas2/win32/Content/Sounds/tap.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/win32/Content/Sounds/tap.xnb -------------------------------------------------------------------------------- /GoneBananas2/win32/Content/fonts/arial-22.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/win32/Content/fonts/arial-22.xnb -------------------------------------------------------------------------------- /GoneBananas2/win32/Content/hd/balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/win32/Content/hd/balls.png -------------------------------------------------------------------------------- /GoneBananas2/win32/Content/hd/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/win32/Content/hd/cloud.png -------------------------------------------------------------------------------- /GoneBananas2/win32/Content/hd/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/win32/Content/hd/grass.png -------------------------------------------------------------------------------- /GoneBananas2/win32/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/win32/Game.ico -------------------------------------------------------------------------------- /GoneBananas2/win32/Game1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/win32/Game1.cs -------------------------------------------------------------------------------- /GoneBananas2/win32/GoneBananas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/win32/GoneBananas.csproj -------------------------------------------------------------------------------- /GoneBananas2/win32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/win32/Program.cs -------------------------------------------------------------------------------- /GoneBananas2/win32/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/win32/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GoneBananas2/windows8/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/windows8/Assets/Logo.png -------------------------------------------------------------------------------- /GoneBananas2/windows8/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/windows8/Assets/SmallLogo.png -------------------------------------------------------------------------------- /GoneBananas2/windows8/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/windows8/Assets/SplashScreen.png -------------------------------------------------------------------------------- /GoneBananas2/windows8/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/windows8/Assets/StoreLogo.png -------------------------------------------------------------------------------- /GoneBananas2/windows8/Content/Sounds/tap.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/windows8/Content/Sounds/tap.xnb -------------------------------------------------------------------------------- /GoneBananas2/windows8/Content/hd/balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/windows8/Content/hd/balls.png -------------------------------------------------------------------------------- /GoneBananas2/windows8/Content/hd/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/windows8/Content/hd/cloud.png -------------------------------------------------------------------------------- /GoneBananas2/windows8/Content/hd/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/windows8/Content/hd/grass.png -------------------------------------------------------------------------------- /GoneBananas2/windows8/GoneBananas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/windows8/GoneBananas.csproj -------------------------------------------------------------------------------- /GoneBananas2/windows8/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/windows8/Package.appxmanifest -------------------------------------------------------------------------------- /GoneBananas2/windows8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/windows8/Program.cs -------------------------------------------------------------------------------- /GoneBananas2/wp8/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/App.xaml -------------------------------------------------------------------------------- /GoneBananas2/wp8/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/App.xaml.cs -------------------------------------------------------------------------------- /GoneBananas2/wp8/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /GoneBananas2/wp8/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /GoneBananas2/wp8/Content/Sounds/tap.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/Content/Sounds/tap.xnb -------------------------------------------------------------------------------- /GoneBananas2/wp8/Content/fonts/arial-22.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/Content/fonts/arial-22.xnb -------------------------------------------------------------------------------- /GoneBananas2/wp8/Content/hd/balls.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/Content/hd/balls.xnb -------------------------------------------------------------------------------- /GoneBananas2/wp8/Content/hd/cloud.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/Content/hd/cloud.xnb -------------------------------------------------------------------------------- /GoneBananas2/wp8/Content/hd/grass.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/Content/hd/grass.xnb -------------------------------------------------------------------------------- /GoneBananas2/wp8/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/GamePage.xaml -------------------------------------------------------------------------------- /GoneBananas2/wp8/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/GamePage.xaml.cs -------------------------------------------------------------------------------- /GoneBananas2/wp8/GoneBananas.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/GoneBananas.csproj -------------------------------------------------------------------------------- /GoneBananas2/wp8/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/LocalizedStrings.cs -------------------------------------------------------------------------------- /GoneBananas2/wp8/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/Properties/AppManifest.xml -------------------------------------------------------------------------------- /GoneBananas2/wp8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GoneBananas2/wp8/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /GoneBananas2/wp8/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/GoneBananas2/wp8/Resources/AppResources.resx -------------------------------------------------------------------------------- /MultipleViewports/MultipleViewports.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/MultipleViewports/MultipleViewports.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/README.md -------------------------------------------------------------------------------- /RocketThrough/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/README.md -------------------------------------------------------------------------------- /RocketThrough/src/Common/GameSprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Common/GameSprite.cs -------------------------------------------------------------------------------- /RocketThrough/src/Common/IntroLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Common/IntroLayer.cs -------------------------------------------------------------------------------- /RocketThrough/src/Common/LineContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Common/LineContainer.cs -------------------------------------------------------------------------------- /RocketThrough/src/Common/Rocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Common/Rocket.cs -------------------------------------------------------------------------------- /RocketThrough/src/Content/common/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/common/bg.png -------------------------------------------------------------------------------- /RocketThrough/src/Content/common/boom.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/common/boom.plist -------------------------------------------------------------------------------- /RocketThrough/src/Content/common/comet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/common/comet.plist -------------------------------------------------------------------------------- /RocketThrough/src/Content/common/font.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/common/font.fnt -------------------------------------------------------------------------------- /RocketThrough/src/Content/common/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/common/font.png -------------------------------------------------------------------------------- /RocketThrough/src/Content/common/jet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/common/jet.plist -------------------------------------------------------------------------------- /RocketThrough/src/Content/common/plink.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/common/plink.plist -------------------------------------------------------------------------------- /RocketThrough/src/Content/common/star.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/common/star.plist -------------------------------------------------------------------------------- /RocketThrough/src/Content/common/warp.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/common/warp.plist -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/bg.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/bg.xnb -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/boom.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/boom.plist -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/comet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/comet.plist -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/font.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/font.fnt -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/font.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/font.xnb -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/jet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/jet.plist -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/music/pickup.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/music/pickup.xnb -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/music/rocket.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/music/rocket.xnb -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/plink.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/plink.plist -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/sprite_sheet.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/sprite_sheet.xnb -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/star.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/star.plist -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/starTexture.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/starTexture.xnb -------------------------------------------------------------------------------- /RocketThrough/src/Content/wp8/warp.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/Content/wp8/warp.plist -------------------------------------------------------------------------------- /RocketThrough/src/RocketThrought.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/RocketThrought.sln -------------------------------------------------------------------------------- /RocketThrough/src/RocketThroughtWP8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/RocketThroughtWP8.sln -------------------------------------------------------------------------------- /RocketThrough/src/RocketThroughtWin8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/RocketThroughtWin8.sln -------------------------------------------------------------------------------- /RocketThrough/src/win32/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/AppDelegate.cs -------------------------------------------------------------------------------- /RocketThrough/src/win32/Content/bg.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/Content/bg.xnb -------------------------------------------------------------------------------- /RocketThrough/src/win32/Content/boom.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/Content/boom.plist -------------------------------------------------------------------------------- /RocketThrough/src/win32/Content/comet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/Content/comet.plist -------------------------------------------------------------------------------- /RocketThrough/src/win32/Content/font.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/Content/font.fnt -------------------------------------------------------------------------------- /RocketThrough/src/win32/Content/font.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/Content/font.xnb -------------------------------------------------------------------------------- /RocketThrough/src/win32/Content/jet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/Content/jet.plist -------------------------------------------------------------------------------- /RocketThrough/src/win32/Content/plink.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/Content/plink.plist -------------------------------------------------------------------------------- /RocketThrough/src/win32/Content/star.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/Content/star.plist -------------------------------------------------------------------------------- /RocketThrough/src/win32/Content/warp.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/Content/warp.plist -------------------------------------------------------------------------------- /RocketThrough/src/win32/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/Game.ico -------------------------------------------------------------------------------- /RocketThrough/src/win32/Game1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/Game1.cs -------------------------------------------------------------------------------- /RocketThrough/src/win32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win32/Program.cs -------------------------------------------------------------------------------- /RocketThrough/src/win8/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win8/AppDelegate.cs -------------------------------------------------------------------------------- /RocketThrough/src/win8/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win8/Assets/Logo.png -------------------------------------------------------------------------------- /RocketThrough/src/win8/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win8/Assets/SmallLogo.png -------------------------------------------------------------------------------- /RocketThrough/src/win8/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win8/Assets/SplashScreen.png -------------------------------------------------------------------------------- /RocketThrough/src/win8/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win8/Assets/StoreLogo.png -------------------------------------------------------------------------------- /RocketThrough/src/win8/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win8/Package.appxmanifest -------------------------------------------------------------------------------- /RocketThrough/src/win8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win8/Program.cs -------------------------------------------------------------------------------- /RocketThrough/src/win8/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/win8/packages.config -------------------------------------------------------------------------------- /RocketThrough/src/wp8/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/wp8/App.xaml -------------------------------------------------------------------------------- /RocketThrough/src/wp8/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/wp8/App.xaml.cs -------------------------------------------------------------------------------- /RocketThrough/src/wp8/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/wp8/AppDelegate.cs -------------------------------------------------------------------------------- /RocketThrough/src/wp8/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/wp8/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /RocketThrough/src/wp8/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/wp8/GamePage.xaml -------------------------------------------------------------------------------- /RocketThrough/src/wp8/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/wp8/GamePage.xaml.cs -------------------------------------------------------------------------------- /RocketThrough/src/wp8/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RocketThrough/src/wp8/LocalizedStrings.cs -------------------------------------------------------------------------------- /RotateAroundCustomAction/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/RotateAroundCustomAction/readme.md -------------------------------------------------------------------------------- /SkyDefense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/README.md -------------------------------------------------------------------------------- /SkyDefense/src/Common/IntroLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/Common/IntroLayer.cs -------------------------------------------------------------------------------- /SkyDefense/src/Content/common/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/Content/common/bg.png -------------------------------------------------------------------------------- /SkyDefense/src/Content/common/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/Content/common/font.png -------------------------------------------------------------------------------- /SkyDefense/src/Content/common/music/boom.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/Content/common/music/boom.xnb -------------------------------------------------------------------------------- /SkyDefense/src/Content/common/music/health.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/Content/common/music/health.xnb -------------------------------------------------------------------------------- /SkyDefense/src/Content/common/sprite_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/Content/common/sprite_sheet.png -------------------------------------------------------------------------------- /SkyDefense/src/Content/wp8/bg.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/Content/wp8/bg.xnb -------------------------------------------------------------------------------- /SkyDefense/src/Content/wp8/music/bombFail.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/Content/wp8/music/bombFail.xnb -------------------------------------------------------------------------------- /SkyDefense/src/Content/wp8/music/boom.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/Content/wp8/music/boom.xnb -------------------------------------------------------------------------------- /SkyDefense/src/Content/wp8/music/health.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/Content/wp8/music/health.xnb -------------------------------------------------------------------------------- /SkyDefense/src/Content/wp8/sprite_sheet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/Content/wp8/sprite_sheet.plist -------------------------------------------------------------------------------- /SkyDefense/src/Content/wp8/sprite_sheet.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/Content/wp8/sprite_sheet.xnb -------------------------------------------------------------------------------- /SkyDefense/src/SkyDefense.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/SkyDefense.sln -------------------------------------------------------------------------------- /SkyDefense/src/SkyDefenseWP8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/SkyDefenseWP8.sln -------------------------------------------------------------------------------- /SkyDefense/src/SkyDefenseWin8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/SkyDefenseWin8.sln -------------------------------------------------------------------------------- /SkyDefense/src/win32/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win32/AppDelegate.cs -------------------------------------------------------------------------------- /SkyDefense/src/win32/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win32/Game.ico -------------------------------------------------------------------------------- /SkyDefense/src/win32/Game1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win32/Game1.cs -------------------------------------------------------------------------------- /SkyDefense/src/win32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win32/Program.cs -------------------------------------------------------------------------------- /SkyDefense/src/win32/SkyDefense.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win32/SkyDefense.Windows.csproj -------------------------------------------------------------------------------- /SkyDefense/src/win8/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win8/AppDelegate.cs -------------------------------------------------------------------------------- /SkyDefense/src/win8/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win8/Assets/Logo.png -------------------------------------------------------------------------------- /SkyDefense/src/win8/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win8/Assets/SmallLogo.png -------------------------------------------------------------------------------- /SkyDefense/src/win8/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win8/Assets/SplashScreen.png -------------------------------------------------------------------------------- /SkyDefense/src/win8/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win8/Assets/StoreLogo.png -------------------------------------------------------------------------------- /SkyDefense/src/win8/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win8/Package.appxmanifest -------------------------------------------------------------------------------- /SkyDefense/src/win8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win8/Program.cs -------------------------------------------------------------------------------- /SkyDefense/src/win8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SkyDefense/src/win8/SkyDefense.Store.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/win8/SkyDefense.Store.csproj -------------------------------------------------------------------------------- /SkyDefense/src/wp8/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/wp8/App.xaml -------------------------------------------------------------------------------- /SkyDefense/src/wp8/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/wp8/App.xaml.cs -------------------------------------------------------------------------------- /SkyDefense/src/wp8/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/wp8/AppDelegate.cs -------------------------------------------------------------------------------- /SkyDefense/src/wp8/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/wp8/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /SkyDefense/src/wp8/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/wp8/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /SkyDefense/src/wp8/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/wp8/GamePage.xaml -------------------------------------------------------------------------------- /SkyDefense/src/wp8/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/wp8/GamePage.xaml.cs -------------------------------------------------------------------------------- /SkyDefense/src/wp8/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/wp8/LocalizedStrings.cs -------------------------------------------------------------------------------- /SkyDefense/src/wp8/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/wp8/Properties/AppManifest.xml -------------------------------------------------------------------------------- /SkyDefense/src/wp8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/wp8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SkyDefense/src/wp8/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/wp8/Resources/AppResources.resx -------------------------------------------------------------------------------- /SkyDefense/src/wp8/SkyDefense.WP8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SkyDefense/src/wp8/SkyDefense.WP8.csproj -------------------------------------------------------------------------------- /SneakyJoystick/NuGet/SneakyJoystick.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/NuGet/SneakyJoystick.nuspec -------------------------------------------------------------------------------- /SneakyJoystick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/README.md -------------------------------------------------------------------------------- /SneakyJoystick/example/Common/IntroLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/Common/IntroLayer.cs -------------------------------------------------------------------------------- /SneakyJoystick/example/Content/magic-beard.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/Content/magic-beard.xnb -------------------------------------------------------------------------------- /SneakyJoystick/example/Content/sound_oso.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/Content/sound_oso.mp3 -------------------------------------------------------------------------------- /SneakyJoystick/example/Content/sound_oso.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/Content/sound_oso.xnb -------------------------------------------------------------------------------- /SneakyJoystick/example/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/macosx/Info.plist -------------------------------------------------------------------------------- /SneakyJoystick/example/macosx/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/macosx/Program.cs -------------------------------------------------------------------------------- /SneakyJoystick/example/win32/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/win32/AppDelegate.cs -------------------------------------------------------------------------------- /SneakyJoystick/example/win32/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/win32/Game.ico -------------------------------------------------------------------------------- /SneakyJoystick/example/win32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/win32/Program.cs -------------------------------------------------------------------------------- /SneakyJoystick/example/win32/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/win32/app.config -------------------------------------------------------------------------------- /SneakyJoystick/example/wp8/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/wp8/App.xaml -------------------------------------------------------------------------------- /SneakyJoystick/example/wp8/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/wp8/App.xaml.cs -------------------------------------------------------------------------------- /SneakyJoystick/example/wp8/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/wp8/AppDelegate.cs -------------------------------------------------------------------------------- /SneakyJoystick/example/wp8/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/wp8/GamePage.xaml -------------------------------------------------------------------------------- /SneakyJoystick/example/wp8/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/wp8/GamePage.xaml.cs -------------------------------------------------------------------------------- /SneakyJoystick/example/wp8/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/example/wp8/LocalizedStrings.cs -------------------------------------------------------------------------------- /SneakyJoystick/tools/NuGet/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/SneakyJoystick/tools/NuGet/NuGet.exe -------------------------------------------------------------------------------- /Spine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/README.md -------------------------------------------------------------------------------- /Spine/example/Common/src/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Common/src/AppDelegate.cs -------------------------------------------------------------------------------- /Spine/example/Common/src/Game1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Common/src/Game1.cs -------------------------------------------------------------------------------- /Spine/example/Common/src/GoblinLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Common/src/GoblinLayer.cs -------------------------------------------------------------------------------- /Spine/example/Common/src/SpineBoyLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Common/src/SpineBoyLayer.cs -------------------------------------------------------------------------------- /Spine/example/Content/fonts/MarkerFelt-22.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/fonts/MarkerFelt-22.xnb -------------------------------------------------------------------------------- /Spine/example/Content/fonts/arial-12.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/fonts/arial-12.xnb -------------------------------------------------------------------------------- /Spine/example/Content/fonts/arial-24.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/fonts/arial-24.xnb -------------------------------------------------------------------------------- /Spine/example/Content/goblins-ffd.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/goblins-ffd.atlas -------------------------------------------------------------------------------- /Spine/example/Content/goblins-ffd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/goblins-ffd.json -------------------------------------------------------------------------------- /Spine/example/Content/goblins-ffd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/goblins-ffd.png -------------------------------------------------------------------------------- /Spine/example/Content/goblins-ffd.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/goblins-ffd.xnb -------------------------------------------------------------------------------- /Spine/example/Content/goblins.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/goblins.atlas -------------------------------------------------------------------------------- /Spine/example/Content/goblins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/goblins.json -------------------------------------------------------------------------------- /Spine/example/Content/goblins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/goblins.png -------------------------------------------------------------------------------- /Spine/example/Content/goblins.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/goblins.xnb -------------------------------------------------------------------------------- /Spine/example/Content/mariotest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/mariotest.json -------------------------------------------------------------------------------- /Spine/example/Content/spineboy.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/spineboy.atlas -------------------------------------------------------------------------------- /Spine/example/Content/spineboy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/spineboy.json -------------------------------------------------------------------------------- /Spine/example/Content/spineboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/spineboy.png -------------------------------------------------------------------------------- /Spine/example/Content/spineboy.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/spineboy.xnb -------------------------------------------------------------------------------- /Spine/example/Content/walk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/walk1.png -------------------------------------------------------------------------------- /Spine/example/Content/walk1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/walk1.xnb -------------------------------------------------------------------------------- /Spine/example/Content/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/wallpaper.png -------------------------------------------------------------------------------- /Spine/example/Content/wallpaper.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/Content/wallpaper.xnb -------------------------------------------------------------------------------- /Spine/example/macosx/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/macosx/Info.plist -------------------------------------------------------------------------------- /Spine/example/macosx/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/macosx/Program.cs -------------------------------------------------------------------------------- /Spine/example/spine-cocossharp-macosx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/spine-cocossharp-macosx.sln -------------------------------------------------------------------------------- /Spine/example/spine-cocossharpDX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/spine-cocossharpDX.sln -------------------------------------------------------------------------------- /Spine/example/spine-cocossharpWP8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/spine-cocossharpWP8.sln -------------------------------------------------------------------------------- /Spine/example/win32/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/win32/Game.ico -------------------------------------------------------------------------------- /Spine/example/win32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/win32/Program.cs -------------------------------------------------------------------------------- /Spine/example/win32/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/win32/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Spine/example/win32/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/win32/packages.config -------------------------------------------------------------------------------- /Spine/example/wp8/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/wp8/App.xaml -------------------------------------------------------------------------------- /Spine/example/wp8/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/wp8/App.xaml.cs -------------------------------------------------------------------------------- /Spine/example/wp8/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/wp8/AppDelegate.cs -------------------------------------------------------------------------------- /Spine/example/wp8/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/wp8/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Spine/example/wp8/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/wp8/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Spine/example/wp8/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/wp8/GamePage.xaml -------------------------------------------------------------------------------- /Spine/example/wp8/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/wp8/GamePage.xaml.cs -------------------------------------------------------------------------------- /Spine/example/wp8/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/wp8/LocalizedStrings.cs -------------------------------------------------------------------------------- /Spine/example/wp8/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/wp8/Properties/AppManifest.xml -------------------------------------------------------------------------------- /Spine/example/wp8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/wp8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Spine/example/wp8/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/wp8/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /Spine/example/wp8/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/example/wp8/Resources/AppResources.resx -------------------------------------------------------------------------------- /Spine/src/SpineCocosSharp/SpineCocosSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/Spine/src/SpineCocosSharp/SpineCocosSharp.sln -------------------------------------------------------------------------------- /TextField/TextField.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TextField/TextField.sln -------------------------------------------------------------------------------- /TextField/TextField/TextField.Droid/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TextField/TextField/TextField.Droid/Program.cs -------------------------------------------------------------------------------- /TextField/TextField/TextField.iOS/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TextField/TextField/TextField.iOS/Game.ico -------------------------------------------------------------------------------- /TextField/TextField/TextField.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TextField/TextField/TextField.iOS/Info.plist -------------------------------------------------------------------------------- /TextField/TextField/TextField.iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TextField/TextField/TextField.iOS/Program.cs -------------------------------------------------------------------------------- /TextField/TextField/TextField/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TextField/TextField/TextField/AppDelegate.cs -------------------------------------------------------------------------------- /TextField/TextField/TextField/IntroLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TextField/TextField/TextField/IntroLayer.cs -------------------------------------------------------------------------------- /TextField/TextField/TextField/TextField.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TextField/TextField/TextField/TextField.csproj -------------------------------------------------------------------------------- /TextField/TextField/TextField/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TextField/TextField/TextField/packages.config -------------------------------------------------------------------------------- /TileMapTest.iOS/TileMapTest.iOS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest.iOS/TileMapTest.iOS.sln -------------------------------------------------------------------------------- /TileMapTest.iOS/TileMapTest.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest.iOS/TileMapTest.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /TileMapTest.iOS/TileMapTest.iOS/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest.iOS/TileMapTest.iOS/Game.ico -------------------------------------------------------------------------------- /TileMapTest.iOS/TileMapTest.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest.iOS/TileMapTest.iOS/Info.plist -------------------------------------------------------------------------------- /TileMapTest.iOS/TileMapTest.iOS/IntroLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest.iOS/TileMapTest.iOS/IntroLayer.cs -------------------------------------------------------------------------------- /TileMapTest.iOS/TileMapTest.iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest.iOS/TileMapTest.iOS/Program.cs -------------------------------------------------------------------------------- /TileMapTest/.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest/.nuget/packages.config -------------------------------------------------------------------------------- /TileMapTest/TileMapTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest/TileMapTest.sln -------------------------------------------------------------------------------- /TileMapTest/TileMapTest/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest/TileMapTest/App.xaml -------------------------------------------------------------------------------- /TileMapTest/TileMapTest/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest/TileMapTest/App.xaml.cs -------------------------------------------------------------------------------- /TileMapTest/TileMapTest/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest/TileMapTest/AppDelegate.cs -------------------------------------------------------------------------------- /TileMapTest/TileMapTest/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest/TileMapTest/GamePage.xaml -------------------------------------------------------------------------------- /TileMapTest/TileMapTest/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest/TileMapTest/GamePage.xaml.cs -------------------------------------------------------------------------------- /TileMapTest/TileMapTest/IntroLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest/TileMapTest/IntroLayer.cs -------------------------------------------------------------------------------- /TileMapTest/TileMapTest/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest/TileMapTest/LocalizedStrings.cs -------------------------------------------------------------------------------- /TileMapTest/TileMapTest/TileMapTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest/TileMapTest/TileMapTest.csproj -------------------------------------------------------------------------------- /TileMapTest/TileMapTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/cocos-sharp-samples/HEAD/TileMapTest/TileMapTest/packages.config --------------------------------------------------------------------------------