├── .gitignore ├── LICENSE.md ├── README.md ├── assets ├── README.md ├── assets.tps ├── enemies │ ├── bubble_die.png │ ├── bubble_walk1.png │ ├── bubble_walk2.png │ ├── enemy_1515.png │ ├── enemy_1616.png │ ├── enemy_1717.png │ ├── fish_die.png │ ├── fish_walk1.png │ ├── fish_walk2.png │ ├── monster_die.png │ ├── monster_walk1.png │ ├── monster_walk2.png │ ├── snail_die1.png │ ├── snail_die2.png │ ├── snail_walk1.png │ └── snail_walk2.png ├── hero │ ├── duck.png │ ├── front.png │ ├── hurt.png │ ├── idle.png │ ├── jump.png │ ├── walking0001.png │ ├── walking0002.png │ ├── walking0003.png │ ├── walking0004.png │ ├── walking0005.png │ ├── walking0006.png │ ├── walking0007.png │ ├── walking0008.png │ ├── walking0009.png │ ├── walking0010.png │ └── walking0011.png ├── hud │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── cross.png │ ├── diamond_blue.png │ ├── diamond_green.png │ ├── diamond_orange.png │ ├── diamond_yellow.png │ ├── heart.png │ ├── heart_full.png │ ├── heart_half_full.png │ ├── key_blue.png │ ├── key_blue_full.png │ ├── key_green.png │ ├── key_green_full.png │ ├── key_orange.png │ ├── key_orange_full.png │ ├── key_yellow.png │ ├── key_yellow_full.png │ ├── tile_112112.png │ ├── tile_113113.png │ ├── tile_114114.png │ ├── tile_115115.png │ ├── tile_3333.png │ ├── tile_4646.png │ └── tile_4747.png └── tiles │ ├── blocks │ ├── blocks_000.png │ ├── blocks_001.png │ ├── blocks_002.png │ ├── blocks_003.png │ ├── blocks_004.png │ ├── blocks_005.png │ ├── blocks_006.png │ ├── blocks_007.png │ ├── blocks_008.png │ ├── blocks_009.png │ ├── blocks_010.png │ ├── blocks_011.png │ ├── blocks_012.png │ ├── blocks_013.png │ ├── blocks_014.png │ ├── blocks_015.png │ ├── blocks_016.png │ ├── blocks_017.png │ └── blocks_018.png │ ├── clay │ ├── clay_000.png │ ├── clay_001.png │ ├── clay_002.png │ ├── clay_003.png │ ├── clay_004.png │ ├── clay_005.png │ ├── clay_006.png │ ├── clay_007.png │ ├── clay_008.png │ ├── clay_009.png │ ├── clay_010.png │ ├── clay_011.png │ ├── clay_012.png │ ├── clay_013.png │ ├── clay_014.png │ ├── clay_015.png │ ├── clay_016.png │ └── clay_017.png │ ├── clouds │ ├── cloud_000.png │ ├── cloud_001.png │ ├── cloud_002.png │ ├── cloud_003.png │ ├── cloud_004.png │ └── cloud_005.png │ ├── dangers │ ├── dangers_000.png │ ├── dangers_001.png │ ├── dangers_002.png │ ├── dangers_003.png │ ├── dangers_004.png │ ├── dangers_005.png │ ├── dangers_006.png │ ├── dangers_007.png │ ├── dangers_008.png │ ├── dangers_009.png │ ├── dangers_010.png │ ├── dangers_011.png │ └── dangers_012.png │ ├── dungeon │ ├── dungeon_000.png │ ├── dungeon_001.png │ ├── dungeon_002.png │ ├── dungeon_003.png │ ├── dungeon_004.png │ ├── dungeon_005.png │ ├── dungeon_006.png │ ├── dungeon_007.png │ ├── dungeon_008.png │ ├── dungeon_009.png │ └── dungeon_010.png │ ├── fences │ ├── fences_000.png │ ├── fences_001.png │ ├── fences_002.png │ └── fences_003.png │ ├── flags │ ├── flags_000.png │ ├── flags_001.png │ ├── flags_002.png │ ├── flags_003.png │ ├── flags_004.png │ ├── flags_005.png │ ├── flags_006.png │ ├── flags_007.png │ ├── flags_008.png │ ├── flags_009.png │ ├── flags_010.png │ └── flags_011.png │ ├── grass │ ├── grass_000.png │ ├── grass_001.png │ ├── grass_002.png │ ├── grass_003.png │ ├── grass_004.png │ ├── grass_005.png │ ├── grass_006.png │ ├── grass_007.png │ ├── grass_008.png │ ├── grass_009.png │ ├── grass_010.png │ ├── grass_011.png │ ├── grass_012.png │ ├── grass_013.png │ ├── grass_014.png │ ├── grass_015.png │ ├── grass_016.png │ └── grass_017.png │ ├── grave │ ├── grave_000.png │ ├── grave_001.png │ ├── grave_002.png │ ├── grave_003.png │ ├── grave_004.png │ ├── grave_005.png │ ├── grave_006.png │ ├── grave_007.png │ ├── grave_008.png │ ├── grave_009.png │ ├── grave_010.png │ ├── grave_011.png │ ├── grave_012.png │ ├── grave_013.png │ ├── grave_014.png │ ├── grave_015.png │ ├── grave_016.png │ └── grave_017.png │ ├── powerups │ ├── diamond_blue.png │ ├── diamond_green.png │ ├── diamond_orange.png │ ├── diamond_yellow.png │ ├── mushroom_brown.png │ ├── mushroom_red.png │ ├── pu_001.png │ ├── pu_002.png │ ├── pu_003.png │ ├── pu_004.png │ ├── pu_007.png │ └── star.png │ ├── props │ ├── bush.png │ ├── cactus.png │ ├── grass.png │ ├── props_003.png │ ├── props_005.png │ ├── props_006.png │ ├── props_007.png │ └── stone.png │ ├── sand │ ├── sand_000.png │ ├── sand_001.png │ ├── sand_002.png │ ├── sand_003.png │ ├── sand_004.png │ ├── sand_005.png │ ├── sand_006.png │ ├── sand_007.png │ ├── sand_008.png │ ├── sand_009.png │ ├── sand_010.png │ ├── sand_011.png │ ├── sand_012.png │ ├── sand_013.png │ ├── sand_014.png │ ├── sand_015.png │ ├── sand_016.png │ └── sand_017.png │ ├── signs │ ├── exit.png │ ├── left.png │ ├── right.png │ └── sign.png │ ├── snow │ ├── snow_000.png │ ├── snow_001.png │ ├── snow_002.png │ ├── snow_003.png │ ├── snow_004.png │ ├── snow_005.png │ ├── snow_006.png │ ├── snow_007.png │ ├── snow_008.png │ ├── snow_009.png │ ├── snow_010.png │ ├── snow_011.png │ ├── snow_012.png │ ├── snow_013.png │ ├── snow_014.png │ ├── snow_015.png │ ├── snow_016.png │ └── snow_017.png │ ├── stone │ ├── stone_000.png │ ├── stone_001.png │ ├── stone_002.png │ ├── stone_003.png │ ├── stone_004.png │ ├── stone_005.png │ ├── stone_006.png │ ├── stone_007.png │ ├── stone_008.png │ ├── stone_009.png │ ├── stone_010.png │ ├── stone_011.png │ ├── stone_012.png │ ├── stone_013.png │ ├── stone_014.png │ ├── stone_015.png │ ├── stone_016.png │ └── stone_017.png │ └── triggers │ ├── key_blue.png │ ├── key_green.png │ ├── key_orange.png │ ├── key_yellow.png │ ├── lock_blue.png │ ├── lock_green.png │ ├── lock_orange.png │ ├── lock_yellow.png │ ├── trampoline_down.png │ ├── trampoline_up.png │ ├── trigger_005.png │ ├── trigger_006.png │ ├── trigger_007.png │ ├── trigger_008.png │ ├── trigger_009.png │ ├── trigger_010.png │ ├── trigger_011.png │ ├── trigger_012.png │ ├── trigger_018.png │ ├── trigger_019.png │ └── trigger_020.png ├── bin ├── MonsterSpriteArt.swf ├── MonsterStarlingArt.swf ├── PatchSpriteArt.swf ├── PatchStarlingArt.swf ├── README.md ├── crate.png ├── icecream.png ├── levels │ ├── A1 │ │ ├── LevelA1.swf │ │ └── background.jpg │ ├── A2 │ │ ├── LevelA2.swf │ │ ├── background.jpg │ │ └── foreground.png │ ├── SoundPatchDemo │ │ ├── JewelMeter.swf │ │ ├── MessageBox.swf │ │ ├── SoundPatchDemo.swf │ │ ├── bg_clouds.png │ │ ├── bg_hills.png │ │ ├── bg_sky.jpg │ │ ├── bg_trees.png │ │ ├── blade.png │ │ ├── fg_trees.png │ │ ├── jewel.png │ │ ├── mb.swf │ │ └── mf.swf │ └── starlingtiles_demo_level.swf ├── muffin.png ├── multi-resolutions │ ├── README.md │ ├── assets1.5x.png │ ├── assets1.5x.xml │ ├── assets1x.png │ ├── assets1x.xml │ ├── assets2x.png │ ├── assets2x.xml │ ├── assets4x.png │ ├── assets4x.xml │ ├── assets5x.png │ └── assets5x.xml ├── sounds │ ├── beep1.mp3 │ ├── beep2.mp3 │ ├── collect.mp3 │ ├── hurt.mp3 │ ├── jump.mp3 │ ├── kill.mp3 │ ├── loop.mp3 │ ├── skid.mp3 │ ├── song.mp3 │ └── walk.mp3 └── vehicle │ ├── Vehicle.png │ └── Vehicle.xml ├── embed ├── 1x │ ├── heroMobile.png │ ├── heroMobile.xml │ ├── worldYellow.png │ ├── worldYellow.xml │ └── yellowBackground.png ├── 2x │ ├── heroMobile.png │ ├── heroMobile.xml │ ├── worldYellow.png │ ├── worldYellow.xml │ └── yellowBackground.png ├── 3D │ ├── carskin.jpg │ ├── pknight.md2 │ ├── pknight1.png │ ├── pknight2.png │ ├── pknight3.png │ ├── pknight4.png │ └── simpletest.away3d4 ├── ArialFont.fnt ├── ArialFont.png ├── Hero.png ├── Hero.xml ├── Particle.pex ├── ParticleTexture.png ├── bg_hills.png ├── buckshot_platforming.xml ├── buckshot_platforming_black.png ├── cloud.png ├── crate.png ├── dragonbones │ └── DragonWithClothes.png ├── games │ ├── braid │ │ ├── Braid.png │ │ ├── Braid.xml │ │ ├── Gymnopedie No 3_compressed.mp3 │ │ ├── LICENSE.md │ │ ├── bg_2_01.jpg │ │ ├── particle.pex │ │ └── texture.png │ ├── flappybird │ │ ├── ding.mp3 │ │ ├── flappybird.ttf │ │ ├── smack.mp3 │ │ ├── sprites.png │ │ ├── sprites.xml │ │ └── whoosh.mp3 │ ├── hungryhero │ │ ├── LICENSE.md │ │ ├── fonts │ │ │ └── bitmap │ │ │ │ ├── fontRegular.fnt │ │ │ │ ├── fontRegular.png │ │ │ │ ├── fontScoreLabel.fnt │ │ │ │ ├── fontScoreLabel.png │ │ │ │ ├── fontScoreValue.fnt │ │ │ │ └── fontScoreValue.png │ │ ├── graphics │ │ │ ├── bgLayer1.jpg │ │ │ ├── bgWelcome.jpg │ │ │ ├── mySpritesheet.png │ │ │ └── mySpritesheet.xml │ │ ├── icons │ │ │ ├── icon_114.png │ │ │ ├── icon_128.png │ │ │ ├── icon_16.png │ │ │ ├── icon_29.png │ │ │ ├── icon_32.png │ │ │ ├── icon_36.png │ │ │ ├── icon_48.png │ │ │ ├── icon_512.png │ │ │ ├── icon_57.png │ │ │ └── icon_72.png │ │ ├── particles │ │ │ ├── particleCoffee.pex │ │ │ ├── particleMushroom.pex │ │ │ └── texture.png │ │ └── sounds │ │ │ ├── bgGame.mp3 │ │ │ ├── bgWelcome.mp3 │ │ │ ├── coffee.mp3 │ │ │ ├── eat.mp3 │ │ │ ├── hit.mp3 │ │ │ ├── hurt.mp3 │ │ │ ├── lose.mp3 │ │ │ └── mushroom.mp3 │ ├── live4sales │ │ ├── 1x │ │ │ ├── menu.png │ │ │ ├── menu.xml │ │ │ ├── objects.png │ │ │ └── objects.xml │ │ ├── 2x │ │ │ ├── menu.png │ │ │ ├── menu.xml │ │ │ ├── objects.png │ │ │ └── objects.xml │ │ └── background.png │ └── tinywings │ │ ├── ball.png │ │ └── ground.png ├── hero_idle.png ├── hero_jump.png ├── hero_static.png ├── hero_walk.png ├── particlePicked.png ├── particlePicked.xml ├── rocket.pex ├── small_crate.png ├── soundpatchdemo │ ├── click_screen.png │ ├── load_screen.png │ └── website_frame.png ├── spine │ ├── spineboy.json │ ├── spineboy.png │ └── spineboy.xml ├── starlingtiles │ ├── starlingtiles_0_01.jpg │ ├── starlingtiles_0_02.jpg │ ├── starlingtiles_0_03.jpg │ ├── starlingtiles_0_04.jpg │ ├── starlingtiles_0_05.jpg │ ├── starlingtiles_0_06.jpg │ ├── starlingtiles_0_07.jpg │ ├── starlingtiles_0_08.jpg │ ├── starlingtiles_1_01.png │ ├── starlingtiles_1_02.png │ ├── starlingtiles_1_03.png │ ├── starlingtiles_1_04.png │ ├── starlingtiles_1_05.png │ ├── starlingtiles_1_06.png │ ├── starlingtiles_1_07.png │ ├── starlingtiles_1_08.png │ ├── starlingtiles_2_01.png │ ├── starlingtiles_2_02.png │ ├── starlingtiles_2_03.png │ ├── starlingtiles_2_04.png │ ├── starlingtiles_2_05.png │ ├── starlingtiles_2_06.png │ ├── starlingtiles_2_07.png │ └── starlingtiles_2_08.png ├── tiledmap │ ├── Genetica-tiles-atlas.png │ ├── Genetica-tiles-atlas.xml │ ├── Genetica-tiles.png │ ├── images │ │ ├── images_01.png │ │ ├── images_02.png │ │ ├── images_03.png │ │ ├── images_04.png │ │ ├── images_05.png │ │ ├── images_06.png │ │ ├── images_07.png │ │ ├── images_08.png │ │ ├── images_09.png │ │ ├── images_10.png │ │ ├── images_11.png │ │ ├── images_12.png │ │ ├── images_13.png │ │ ├── images_14.png │ │ ├── images_15.png │ │ ├── images_16.png │ │ ├── images_17.png │ │ ├── images_18.png │ │ ├── images_19.png │ │ ├── images_20.png │ │ ├── images_21.png │ │ ├── images_22.png │ │ ├── images_23.png │ │ ├── images_24.png │ │ ├── images_25.png │ │ ├── images_26.png │ │ ├── images_27.png │ │ ├── images_28.png │ │ ├── images_29.png │ │ ├── images_30.png │ │ ├── images_31.png │ │ ├── images_32.png │ │ ├── images_33.png │ │ ├── images_34.png │ │ ├── images_35.png │ │ ├── images_36.png │ │ ├── images_37.png │ │ ├── images_38.png │ │ ├── images_39.png │ │ └── images_40.png │ ├── map-atlas.tmx │ ├── map.tmx │ └── multi-resolutions │ │ ├── README.md │ │ ├── map.tmx │ │ ├── tiles.png │ │ ├── tiles.tps │ │ ├── tiles.xml │ │ └── tiles │ │ ├── blocks │ │ ├── blocks_000.png │ │ ├── blocks_001.png │ │ ├── blocks_002.png │ │ ├── blocks_003.png │ │ ├── blocks_004.png │ │ ├── blocks_005.png │ │ ├── blocks_006.png │ │ ├── blocks_007.png │ │ ├── blocks_008.png │ │ ├── blocks_009.png │ │ ├── blocks_010.png │ │ ├── blocks_011.png │ │ ├── blocks_012.png │ │ ├── blocks_013.png │ │ ├── blocks_014.png │ │ ├── blocks_015.png │ │ ├── blocks_016.png │ │ ├── blocks_017.png │ │ └── blocks_018.png │ │ ├── clay │ │ ├── clay_000.png │ │ ├── clay_001.png │ │ ├── clay_002.png │ │ ├── clay_003.png │ │ ├── clay_004.png │ │ ├── clay_005.png │ │ ├── clay_006.png │ │ ├── clay_007.png │ │ ├── clay_008.png │ │ ├── clay_009.png │ │ ├── clay_010.png │ │ ├── clay_011.png │ │ ├── clay_012.png │ │ ├── clay_013.png │ │ ├── clay_014.png │ │ ├── clay_015.png │ │ ├── clay_016.png │ │ └── clay_017.png │ │ ├── clouds │ │ ├── cloud_000.png │ │ ├── cloud_001.png │ │ ├── cloud_002.png │ │ ├── cloud_003.png │ │ ├── cloud_004.png │ │ └── cloud_005.png │ │ ├── dangers │ │ ├── dangers_000.png │ │ ├── dangers_001.png │ │ ├── dangers_002.png │ │ ├── dangers_003.png │ │ ├── dangers_004.png │ │ ├── dangers_005.png │ │ ├── dangers_006.png │ │ ├── dangers_007.png │ │ ├── dangers_008.png │ │ ├── dangers_009.png │ │ ├── dangers_010.png │ │ ├── dangers_011.png │ │ └── dangers_012.png │ │ ├── dungeon │ │ ├── dungeon_000.png │ │ ├── dungeon_001.png │ │ ├── dungeon_002.png │ │ ├── dungeon_003.png │ │ ├── dungeon_004.png │ │ ├── dungeon_005.png │ │ ├── dungeon_006.png │ │ ├── dungeon_007.png │ │ ├── dungeon_008.png │ │ ├── dungeon_009.png │ │ └── dungeon_010.png │ │ ├── fences │ │ ├── fences_000.png │ │ ├── fences_001.png │ │ ├── fences_002.png │ │ └── fences_003.png │ │ ├── flags │ │ ├── flags_000.png │ │ ├── flags_001.png │ │ ├── flags_002.png │ │ ├── flags_003.png │ │ ├── flags_004.png │ │ ├── flags_005.png │ │ ├── flags_006.png │ │ ├── flags_007.png │ │ ├── flags_008.png │ │ ├── flags_009.png │ │ ├── flags_010.png │ │ └── flags_011.png │ │ ├── grass │ │ ├── grass_000.png │ │ ├── grass_001.png │ │ ├── grass_002.png │ │ ├── grass_003.png │ │ ├── grass_004.png │ │ ├── grass_005.png │ │ ├── grass_006.png │ │ ├── grass_007.png │ │ ├── grass_008.png │ │ ├── grass_009.png │ │ ├── grass_010.png │ │ ├── grass_011.png │ │ ├── grass_012.png │ │ ├── grass_013.png │ │ ├── grass_014.png │ │ ├── grass_015.png │ │ ├── grass_016.png │ │ └── grass_017.png │ │ ├── grave │ │ ├── grave_000.png │ │ ├── grave_001.png │ │ ├── grave_002.png │ │ ├── grave_003.png │ │ ├── grave_004.png │ │ ├── grave_005.png │ │ ├── grave_006.png │ │ ├── grave_007.png │ │ ├── grave_008.png │ │ ├── grave_009.png │ │ ├── grave_010.png │ │ ├── grave_011.png │ │ ├── grave_012.png │ │ ├── grave_013.png │ │ ├── grave_014.png │ │ ├── grave_015.png │ │ ├── grave_016.png │ │ └── grave_017.png │ │ ├── powerups │ │ ├── diamond_blue.png │ │ ├── diamond_green.png │ │ ├── diamond_orange.png │ │ ├── diamond_yellow.png │ │ ├── mushroom_brown.png │ │ ├── mushroom_red.png │ │ ├── pu_001.png │ │ ├── pu_002.png │ │ ├── pu_003.png │ │ ├── pu_004.png │ │ ├── pu_007.png │ │ └── star.png │ │ ├── props │ │ ├── bush.png │ │ ├── cactus.png │ │ ├── grass.png │ │ ├── props_003.png │ │ ├── props_005.png │ │ ├── props_006.png │ │ ├── props_007.png │ │ └── stone.png │ │ ├── sand │ │ ├── sand_000.png │ │ ├── sand_001.png │ │ ├── sand_002.png │ │ ├── sand_003.png │ │ ├── sand_004.png │ │ ├── sand_005.png │ │ ├── sand_006.png │ │ ├── sand_007.png │ │ ├── sand_008.png │ │ ├── sand_009.png │ │ ├── sand_010.png │ │ ├── sand_011.png │ │ ├── sand_012.png │ │ ├── sand_013.png │ │ ├── sand_014.png │ │ ├── sand_015.png │ │ ├── sand_016.png │ │ └── sand_017.png │ │ ├── signs │ │ ├── exit.png │ │ ├── left.png │ │ ├── right.png │ │ └── sign.png │ │ ├── snow │ │ ├── snow_000.png │ │ ├── snow_001.png │ │ ├── snow_002.png │ │ ├── snow_003.png │ │ ├── snow_004.png │ │ ├── snow_005.png │ │ ├── snow_006.png │ │ ├── snow_007.png │ │ ├── snow_008.png │ │ ├── snow_009.png │ │ ├── snow_010.png │ │ ├── snow_011.png │ │ ├── snow_012.png │ │ ├── snow_013.png │ │ ├── snow_014.png │ │ ├── snow_015.png │ │ ├── snow_016.png │ │ └── snow_017.png │ │ ├── stone │ │ ├── stone_000.png │ │ ├── stone_001.png │ │ ├── stone_002.png │ │ ├── stone_003.png │ │ ├── stone_004.png │ │ ├── stone_005.png │ │ ├── stone_006.png │ │ ├── stone_007.png │ │ ├── stone_008.png │ │ ├── stone_009.png │ │ ├── stone_010.png │ │ ├── stone_011.png │ │ ├── stone_012.png │ │ ├── stone_013.png │ │ ├── stone_014.png │ │ ├── stone_015.png │ │ ├── stone_016.png │ │ └── stone_017.png │ │ └── triggers │ │ ├── key_blue.png │ │ ├── key_green.png │ │ ├── key_orange.png │ │ ├── key_yellow.png │ │ ├── lock_blue.png │ │ ├── lock_green.png │ │ ├── lock_orange.png │ │ ├── lock_yellow.png │ │ ├── trampoline_down.png │ │ ├── trampoline_up.png │ │ ├── trigger_005.png │ │ ├── trigger_006.png │ │ ├── trigger_007.png │ │ ├── trigger_008.png │ │ ├── trigger_009.png │ │ ├── trigger_010.png │ │ ├── trigger_011.png │ │ ├── trigger_012.png │ │ ├── trigger_018.png │ │ ├── trigger_019.png │ │ └── trigger_020.png ├── yellowParticle.pex └── yellowParticle.png ├── fla ├── LevelA1.fla ├── LevelA2.fla ├── SoundPatchDemo │ ├── AnimatedLeaf.as │ ├── HUD.fla │ ├── MessageBox.fla │ ├── SoundPatchDemo.fla │ ├── leaf.png │ ├── mb.fla │ └── mf.fla ├── monster_character-SpriteArt.fla ├── monster_character-StarlingArt.fla ├── patch_character-SpriteArt.fla ├── patch_character-StarlingArt.fla └── starlingtiles_demo.fla ├── lib └── Reactor_2.0.1.1271_Release.swc └── src ├── CitrusExampleLauncher.as ├── Main.as ├── advancedSounds ├── AdvancedSoundsState.as ├── CitrusSoundSprite.as └── Main.as ├── blitting ├── BlittingGameState.as └── Main.as ├── box2dstarling ├── ALevel.as ├── Level1.as ├── Level2.as ├── Main.as ├── MyGameData.as └── PhysicsEditorObjects.as ├── cameramovement ├── CameraMovement.as └── Main.as ├── complexbox2dobject ├── Chain.as ├── ChainGraphic.as ├── ComplexBox2DObjectGameState.as ├── Main.as ├── RopeChain.as └── RopeChainGraphics.as ├── dragonbones ├── DragonBonesDisplayList.as ├── DragonBonesStarling.as └── Main.as ├── entity ├── DraggableHeroPhysicsComponent.as ├── EntityGameState.as └── Main.as ├── games ├── braid │ ├── Assets.as │ ├── BraidDemo.as │ ├── Main.as │ ├── SoundPlaybackControl.as │ └── objects │ │ ├── BraidEnemy.as │ │ ├── BraidHero.as │ │ └── Key.as ├── flappybird │ ├── Assets.as │ ├── FlappyBirdGameState.as │ └── Main.as ├── hungryhero │ ├── Assets.as │ ├── Fonts.as │ ├── Game.as │ ├── GameConstants.as │ ├── LICENSE.md │ ├── Main.as │ ├── ParticleAssets.as │ ├── Sounds.as │ └── com │ │ └── hsharma │ │ └── hungryHero │ │ ├── customObjects │ │ └── Font.as │ │ ├── events │ │ └── NavigationEvent.as │ │ ├── gameElements │ │ ├── BgLayer.as │ │ ├── GameBackground.as │ │ ├── Hero.as │ │ ├── Item.as │ │ ├── Obstacle.as │ │ └── Particle.as │ │ ├── objectPools │ │ ├── PoolItem.as │ │ ├── PoolObstacle.as │ │ └── PoolParticle.as │ │ ├── screens │ │ ├── InGame.as │ │ └── Welcome.as │ │ └── ui │ │ ├── GameOverContainer.as │ │ ├── HUD.as │ │ ├── PauseButton.as │ │ └── SoundButton.as ├── live4sales │ ├── Box2DLive4Sales.as │ ├── Main.as │ ├── NapeLive4Sales.as │ ├── assets │ │ ├── AssetEmbeds_1x.as │ │ ├── AssetEmbeds_2x.as │ │ └── Assets.as │ ├── box2d │ │ ├── characters │ │ │ ├── SalesWoman.as │ │ │ └── ShopsWoman.as │ │ ├── objects │ │ │ ├── Block.as │ │ │ └── Cash.as │ │ └── weapons │ │ │ └── Bag.as │ ├── events │ │ └── MoneyEvent.as │ ├── nape │ │ ├── characters │ │ │ ├── SalesWoman.as │ │ │ └── ShopsWoman.as │ │ ├── objects │ │ │ ├── Block.as │ │ │ └── Cash.as │ │ └── weapons │ │ │ └── Bag.as │ ├── objects │ │ └── Coin.as │ ├── runtime │ │ ├── CoinsCreation.as │ │ ├── box2d │ │ │ └── EnemiesCreation.as │ │ └── nape │ │ │ └── EnemiesCreation.as │ ├── ui │ │ ├── Hud.as │ │ └── Icon.as │ └── utils │ │ ├── Grid.as │ │ └── PrintR.as ├── osmos │ ├── Atom.as │ ├── AtomArt.as │ ├── Main.as │ └── OsmosGameState.as ├── superhexagon │ ├── Main.as │ └── SuperHexagon.as └── tinywings │ ├── Main.as │ ├── box2d │ ├── Ball.as │ ├── HillsManagingGraphics.as │ ├── HillsTexture.as │ └── TinyWingsGameState.as │ └── nape │ ├── BirdHero.as │ ├── HillsManagingGraphics.as │ ├── HillsTexture.as │ ├── TinyWingsGameState.as │ └── TouchInput.as ├── groupobjects ├── FollowTargetComponent.as ├── GroupGameState.as ├── Main.as └── MoveComponent.as ├── mobilenapestarling ├── Main.as ├── MobileHero.as ├── MobileInput.as ├── MobileNapeStarlingGameState.as ├── Particle.as └── assets │ ├── AssetEmbeds_1x.as │ ├── AssetEmbeds_2x.as │ └── Assets.as ├── multiplayer ├── Main.as └── MultiPlayerGameState.as ├── multiresolutions ├── Assets.as ├── Main.as └── MultiResolutionsState.as ├── objectpooling ├── Main.as └── PoolObjectState.as ├── simplecollision ├── Main.as └── SimpleGameState.as ├── soundpatchdemo ├── ClickScreen.as ├── DemoState.as ├── JewelMeter.as ├── LoadScreen.as ├── Main.as ├── SignMessage.as ├── WebsiteFrame.as └── WindmillArms.as ├── starlingdemo ├── Main.as └── StarlingDemoGameState.as ├── statetransitions ├── Main.as └── StarlingDemoStateTransition.as ├── tiledmap ├── displaylist │ ├── Main.as │ └── TiledMapGameState.as └── starling │ ├── Main.as │ └── StarlingTiledMapGameState.as └── vehicle ├── Assets.as ├── CarGameState.as └── Main.as /.gitignore: -------------------------------------------------------------------------------- 1 | .settings 2 | .project -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- 1 | Graphics from [Kenney Vleugels](http://www.kenney.nl). -------------------------------------------------------------------------------- /assets/enemies/bubble_die.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/bubble_die.png -------------------------------------------------------------------------------- /assets/enemies/bubble_walk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/bubble_walk1.png -------------------------------------------------------------------------------- /assets/enemies/bubble_walk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/bubble_walk2.png -------------------------------------------------------------------------------- /assets/enemies/enemy_1515.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/enemy_1515.png -------------------------------------------------------------------------------- /assets/enemies/enemy_1616.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/enemy_1616.png -------------------------------------------------------------------------------- /assets/enemies/enemy_1717.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/enemy_1717.png -------------------------------------------------------------------------------- /assets/enemies/fish_die.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/fish_die.png -------------------------------------------------------------------------------- /assets/enemies/fish_walk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/fish_walk1.png -------------------------------------------------------------------------------- /assets/enemies/fish_walk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/fish_walk2.png -------------------------------------------------------------------------------- /assets/enemies/monster_die.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/monster_die.png -------------------------------------------------------------------------------- /assets/enemies/monster_walk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/monster_walk1.png -------------------------------------------------------------------------------- /assets/enemies/monster_walk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/monster_walk2.png -------------------------------------------------------------------------------- /assets/enemies/snail_die1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/snail_die1.png -------------------------------------------------------------------------------- /assets/enemies/snail_die2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/snail_die2.png -------------------------------------------------------------------------------- /assets/enemies/snail_walk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/snail_walk1.png -------------------------------------------------------------------------------- /assets/enemies/snail_walk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/enemies/snail_walk2.png -------------------------------------------------------------------------------- /assets/hero/duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/duck.png -------------------------------------------------------------------------------- /assets/hero/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/front.png -------------------------------------------------------------------------------- /assets/hero/hurt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/hurt.png -------------------------------------------------------------------------------- /assets/hero/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/idle.png -------------------------------------------------------------------------------- /assets/hero/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/jump.png -------------------------------------------------------------------------------- /assets/hero/walking0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/walking0001.png -------------------------------------------------------------------------------- /assets/hero/walking0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/walking0002.png -------------------------------------------------------------------------------- /assets/hero/walking0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/walking0003.png -------------------------------------------------------------------------------- /assets/hero/walking0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/walking0004.png -------------------------------------------------------------------------------- /assets/hero/walking0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/walking0005.png -------------------------------------------------------------------------------- /assets/hero/walking0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/walking0006.png -------------------------------------------------------------------------------- /assets/hero/walking0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/walking0007.png -------------------------------------------------------------------------------- /assets/hero/walking0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/walking0008.png -------------------------------------------------------------------------------- /assets/hero/walking0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/walking0009.png -------------------------------------------------------------------------------- /assets/hero/walking0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/walking0010.png -------------------------------------------------------------------------------- /assets/hero/walking0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hero/walking0011.png -------------------------------------------------------------------------------- /assets/hud/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/0.png -------------------------------------------------------------------------------- /assets/hud/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/1.png -------------------------------------------------------------------------------- /assets/hud/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/2.png -------------------------------------------------------------------------------- /assets/hud/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/3.png -------------------------------------------------------------------------------- /assets/hud/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/4.png -------------------------------------------------------------------------------- /assets/hud/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/5.png -------------------------------------------------------------------------------- /assets/hud/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/6.png -------------------------------------------------------------------------------- /assets/hud/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/7.png -------------------------------------------------------------------------------- /assets/hud/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/8.png -------------------------------------------------------------------------------- /assets/hud/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/9.png -------------------------------------------------------------------------------- /assets/hud/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/cross.png -------------------------------------------------------------------------------- /assets/hud/diamond_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/diamond_blue.png -------------------------------------------------------------------------------- /assets/hud/diamond_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/diamond_green.png -------------------------------------------------------------------------------- /assets/hud/diamond_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/diamond_orange.png -------------------------------------------------------------------------------- /assets/hud/diamond_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/diamond_yellow.png -------------------------------------------------------------------------------- /assets/hud/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/heart.png -------------------------------------------------------------------------------- /assets/hud/heart_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/heart_full.png -------------------------------------------------------------------------------- /assets/hud/heart_half_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/heart_half_full.png -------------------------------------------------------------------------------- /assets/hud/key_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/key_blue.png -------------------------------------------------------------------------------- /assets/hud/key_blue_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/key_blue_full.png -------------------------------------------------------------------------------- /assets/hud/key_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/key_green.png -------------------------------------------------------------------------------- /assets/hud/key_green_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/key_green_full.png -------------------------------------------------------------------------------- /assets/hud/key_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/key_orange.png -------------------------------------------------------------------------------- /assets/hud/key_orange_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/key_orange_full.png -------------------------------------------------------------------------------- /assets/hud/key_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/key_yellow.png -------------------------------------------------------------------------------- /assets/hud/key_yellow_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/key_yellow_full.png -------------------------------------------------------------------------------- /assets/hud/tile_112112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/tile_112112.png -------------------------------------------------------------------------------- /assets/hud/tile_113113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/tile_113113.png -------------------------------------------------------------------------------- /assets/hud/tile_114114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/tile_114114.png -------------------------------------------------------------------------------- /assets/hud/tile_115115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/tile_115115.png -------------------------------------------------------------------------------- /assets/hud/tile_3333.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/tile_3333.png -------------------------------------------------------------------------------- /assets/hud/tile_4646.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/tile_4646.png -------------------------------------------------------------------------------- /assets/hud/tile_4747.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/hud/tile_4747.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_000.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_001.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_002.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_003.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_004.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_005.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_006.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_007.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_008.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_009.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_010.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_011.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_012.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_013.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_014.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_015.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_016.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_017.png -------------------------------------------------------------------------------- /assets/tiles/blocks/blocks_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/blocks/blocks_018.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_000.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_001.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_002.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_003.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_004.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_005.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_006.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_007.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_008.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_009.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_010.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_011.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_012.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_013.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_014.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_015.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_016.png -------------------------------------------------------------------------------- /assets/tiles/clay/clay_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clay/clay_017.png -------------------------------------------------------------------------------- /assets/tiles/clouds/cloud_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clouds/cloud_000.png -------------------------------------------------------------------------------- /assets/tiles/clouds/cloud_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clouds/cloud_001.png -------------------------------------------------------------------------------- /assets/tiles/clouds/cloud_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clouds/cloud_002.png -------------------------------------------------------------------------------- /assets/tiles/clouds/cloud_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clouds/cloud_003.png -------------------------------------------------------------------------------- /assets/tiles/clouds/cloud_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clouds/cloud_004.png -------------------------------------------------------------------------------- /assets/tiles/clouds/cloud_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/clouds/cloud_005.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_000.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_001.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_002.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_003.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_004.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_005.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_006.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_007.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_008.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_009.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_010.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_011.png -------------------------------------------------------------------------------- /assets/tiles/dangers/dangers_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dangers/dangers_012.png -------------------------------------------------------------------------------- /assets/tiles/dungeon/dungeon_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dungeon/dungeon_000.png -------------------------------------------------------------------------------- /assets/tiles/dungeon/dungeon_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dungeon/dungeon_001.png -------------------------------------------------------------------------------- /assets/tiles/dungeon/dungeon_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dungeon/dungeon_002.png -------------------------------------------------------------------------------- /assets/tiles/dungeon/dungeon_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dungeon/dungeon_003.png -------------------------------------------------------------------------------- /assets/tiles/dungeon/dungeon_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dungeon/dungeon_004.png -------------------------------------------------------------------------------- /assets/tiles/dungeon/dungeon_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dungeon/dungeon_005.png -------------------------------------------------------------------------------- /assets/tiles/dungeon/dungeon_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dungeon/dungeon_006.png -------------------------------------------------------------------------------- /assets/tiles/dungeon/dungeon_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dungeon/dungeon_007.png -------------------------------------------------------------------------------- /assets/tiles/dungeon/dungeon_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dungeon/dungeon_008.png -------------------------------------------------------------------------------- /assets/tiles/dungeon/dungeon_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dungeon/dungeon_009.png -------------------------------------------------------------------------------- /assets/tiles/dungeon/dungeon_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/dungeon/dungeon_010.png -------------------------------------------------------------------------------- /assets/tiles/fences/fences_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/fences/fences_000.png -------------------------------------------------------------------------------- /assets/tiles/fences/fences_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/fences/fences_001.png -------------------------------------------------------------------------------- /assets/tiles/fences/fences_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/fences/fences_002.png -------------------------------------------------------------------------------- /assets/tiles/fences/fences_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/fences/fences_003.png -------------------------------------------------------------------------------- /assets/tiles/flags/flags_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/flags/flags_000.png -------------------------------------------------------------------------------- /assets/tiles/flags/flags_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/flags/flags_001.png -------------------------------------------------------------------------------- /assets/tiles/flags/flags_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/flags/flags_002.png -------------------------------------------------------------------------------- /assets/tiles/flags/flags_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/flags/flags_003.png -------------------------------------------------------------------------------- /assets/tiles/flags/flags_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/flags/flags_004.png -------------------------------------------------------------------------------- /assets/tiles/flags/flags_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/flags/flags_005.png -------------------------------------------------------------------------------- /assets/tiles/flags/flags_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/flags/flags_006.png -------------------------------------------------------------------------------- /assets/tiles/flags/flags_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/flags/flags_007.png -------------------------------------------------------------------------------- /assets/tiles/flags/flags_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/flags/flags_008.png -------------------------------------------------------------------------------- /assets/tiles/flags/flags_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/flags/flags_009.png -------------------------------------------------------------------------------- /assets/tiles/flags/flags_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/flags/flags_010.png -------------------------------------------------------------------------------- /assets/tiles/flags/flags_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/flags/flags_011.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_000.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_001.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_002.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_003.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_004.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_005.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_006.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_007.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_008.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_009.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_010.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_011.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_012.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_013.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_014.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_015.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_016.png -------------------------------------------------------------------------------- /assets/tiles/grass/grass_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grass/grass_017.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_000.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_001.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_002.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_003.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_004.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_005.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_006.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_007.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_008.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_009.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_010.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_011.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_012.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_013.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_014.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_015.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_016.png -------------------------------------------------------------------------------- /assets/tiles/grave/grave_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/grave/grave_017.png -------------------------------------------------------------------------------- /assets/tiles/powerups/diamond_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/powerups/diamond_blue.png -------------------------------------------------------------------------------- /assets/tiles/powerups/diamond_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/powerups/diamond_green.png -------------------------------------------------------------------------------- /assets/tiles/powerups/diamond_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/powerups/diamond_orange.png -------------------------------------------------------------------------------- /assets/tiles/powerups/diamond_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/powerups/diamond_yellow.png -------------------------------------------------------------------------------- /assets/tiles/powerups/mushroom_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/powerups/mushroom_brown.png -------------------------------------------------------------------------------- /assets/tiles/powerups/mushroom_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/powerups/mushroom_red.png -------------------------------------------------------------------------------- /assets/tiles/powerups/pu_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/powerups/pu_001.png -------------------------------------------------------------------------------- /assets/tiles/powerups/pu_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/powerups/pu_002.png -------------------------------------------------------------------------------- /assets/tiles/powerups/pu_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/powerups/pu_003.png -------------------------------------------------------------------------------- /assets/tiles/powerups/pu_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/powerups/pu_004.png -------------------------------------------------------------------------------- /assets/tiles/powerups/pu_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/powerups/pu_007.png -------------------------------------------------------------------------------- /assets/tiles/powerups/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/powerups/star.png -------------------------------------------------------------------------------- /assets/tiles/props/bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/props/bush.png -------------------------------------------------------------------------------- /assets/tiles/props/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/props/cactus.png -------------------------------------------------------------------------------- /assets/tiles/props/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/props/grass.png -------------------------------------------------------------------------------- /assets/tiles/props/props_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/props/props_003.png -------------------------------------------------------------------------------- /assets/tiles/props/props_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/props/props_005.png -------------------------------------------------------------------------------- /assets/tiles/props/props_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/props/props_006.png -------------------------------------------------------------------------------- /assets/tiles/props/props_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/props/props_007.png -------------------------------------------------------------------------------- /assets/tiles/props/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/props/stone.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_000.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_001.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_002.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_003.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_004.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_005.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_006.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_007.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_008.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_009.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_010.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_011.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_012.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_013.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_014.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_015.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_016.png -------------------------------------------------------------------------------- /assets/tiles/sand/sand_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/sand/sand_017.png -------------------------------------------------------------------------------- /assets/tiles/signs/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/signs/exit.png -------------------------------------------------------------------------------- /assets/tiles/signs/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/signs/left.png -------------------------------------------------------------------------------- /assets/tiles/signs/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/signs/right.png -------------------------------------------------------------------------------- /assets/tiles/signs/sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/signs/sign.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_000.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_001.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_002.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_003.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_004.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_005.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_006.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_007.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_008.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_009.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_010.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_011.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_012.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_013.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_014.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_015.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_016.png -------------------------------------------------------------------------------- /assets/tiles/snow/snow_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/snow/snow_017.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_000.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_001.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_002.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_003.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_004.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_005.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_006.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_007.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_008.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_009.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_010.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_011.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_012.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_013.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_014.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_015.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_016.png -------------------------------------------------------------------------------- /assets/tiles/stone/stone_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/stone/stone_017.png -------------------------------------------------------------------------------- /assets/tiles/triggers/key_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/key_blue.png -------------------------------------------------------------------------------- /assets/tiles/triggers/key_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/key_green.png -------------------------------------------------------------------------------- /assets/tiles/triggers/key_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/key_orange.png -------------------------------------------------------------------------------- /assets/tiles/triggers/key_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/key_yellow.png -------------------------------------------------------------------------------- /assets/tiles/triggers/lock_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/lock_blue.png -------------------------------------------------------------------------------- /assets/tiles/triggers/lock_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/lock_green.png -------------------------------------------------------------------------------- /assets/tiles/triggers/lock_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/lock_orange.png -------------------------------------------------------------------------------- /assets/tiles/triggers/lock_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/lock_yellow.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trampoline_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trampoline_down.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trampoline_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trampoline_up.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trigger_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trigger_005.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trigger_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trigger_006.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trigger_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trigger_007.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trigger_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trigger_008.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trigger_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trigger_009.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trigger_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trigger_010.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trigger_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trigger_011.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trigger_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trigger_012.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trigger_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trigger_018.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trigger_019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trigger_019.png -------------------------------------------------------------------------------- /assets/tiles/triggers/trigger_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/assets/tiles/triggers/trigger_020.png -------------------------------------------------------------------------------- /bin/MonsterSpriteArt.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/MonsterSpriteArt.swf -------------------------------------------------------------------------------- /bin/MonsterStarlingArt.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/MonsterStarlingArt.swf -------------------------------------------------------------------------------- /bin/PatchSpriteArt.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/PatchSpriteArt.swf -------------------------------------------------------------------------------- /bin/PatchStarlingArt.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/PatchStarlingArt.swf -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- 1 | To run the demo on local, you must add the location into trusted location settings in Flash Player preferences. -------------------------------------------------------------------------------- /bin/crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/crate.png -------------------------------------------------------------------------------- /bin/icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/icecream.png -------------------------------------------------------------------------------- /bin/levels/A1/LevelA1.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/A1/LevelA1.swf -------------------------------------------------------------------------------- /bin/levels/A1/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/A1/background.jpg -------------------------------------------------------------------------------- /bin/levels/A2/LevelA2.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/A2/LevelA2.swf -------------------------------------------------------------------------------- /bin/levels/A2/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/A2/background.jpg -------------------------------------------------------------------------------- /bin/levels/A2/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/A2/foreground.png -------------------------------------------------------------------------------- /bin/levels/SoundPatchDemo/JewelMeter.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/SoundPatchDemo/JewelMeter.swf -------------------------------------------------------------------------------- /bin/levels/SoundPatchDemo/MessageBox.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/SoundPatchDemo/MessageBox.swf -------------------------------------------------------------------------------- /bin/levels/SoundPatchDemo/SoundPatchDemo.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/SoundPatchDemo/SoundPatchDemo.swf -------------------------------------------------------------------------------- /bin/levels/SoundPatchDemo/bg_clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/SoundPatchDemo/bg_clouds.png -------------------------------------------------------------------------------- /bin/levels/SoundPatchDemo/bg_hills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/SoundPatchDemo/bg_hills.png -------------------------------------------------------------------------------- /bin/levels/SoundPatchDemo/bg_sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/SoundPatchDemo/bg_sky.jpg -------------------------------------------------------------------------------- /bin/levels/SoundPatchDemo/bg_trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/SoundPatchDemo/bg_trees.png -------------------------------------------------------------------------------- /bin/levels/SoundPatchDemo/blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/SoundPatchDemo/blade.png -------------------------------------------------------------------------------- /bin/levels/SoundPatchDemo/fg_trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/SoundPatchDemo/fg_trees.png -------------------------------------------------------------------------------- /bin/levels/SoundPatchDemo/jewel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/SoundPatchDemo/jewel.png -------------------------------------------------------------------------------- /bin/levels/SoundPatchDemo/mb.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/SoundPatchDemo/mb.swf -------------------------------------------------------------------------------- /bin/levels/SoundPatchDemo/mf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/SoundPatchDemo/mf.swf -------------------------------------------------------------------------------- /bin/levels/starlingtiles_demo_level.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/levels/starlingtiles_demo_level.swf -------------------------------------------------------------------------------- /bin/muffin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/muffin.png -------------------------------------------------------------------------------- /bin/multi-resolutions/README.md: -------------------------------------------------------------------------------- 1 | Used [pngquant](http://pngquant.org/) to optimize assets size. -------------------------------------------------------------------------------- /bin/multi-resolutions/assets1.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/multi-resolutions/assets1.5x.png -------------------------------------------------------------------------------- /bin/multi-resolutions/assets1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/multi-resolutions/assets1x.png -------------------------------------------------------------------------------- /bin/multi-resolutions/assets2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/multi-resolutions/assets2x.png -------------------------------------------------------------------------------- /bin/multi-resolutions/assets4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/multi-resolutions/assets4x.png -------------------------------------------------------------------------------- /bin/multi-resolutions/assets5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/multi-resolutions/assets5x.png -------------------------------------------------------------------------------- /bin/sounds/beep1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/sounds/beep1.mp3 -------------------------------------------------------------------------------- /bin/sounds/beep2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/sounds/beep2.mp3 -------------------------------------------------------------------------------- /bin/sounds/collect.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/sounds/collect.mp3 -------------------------------------------------------------------------------- /bin/sounds/hurt.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/sounds/hurt.mp3 -------------------------------------------------------------------------------- /bin/sounds/jump.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/sounds/jump.mp3 -------------------------------------------------------------------------------- /bin/sounds/kill.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/sounds/kill.mp3 -------------------------------------------------------------------------------- /bin/sounds/loop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/sounds/loop.mp3 -------------------------------------------------------------------------------- /bin/sounds/skid.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/sounds/skid.mp3 -------------------------------------------------------------------------------- /bin/sounds/song.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/sounds/song.mp3 -------------------------------------------------------------------------------- /bin/sounds/walk.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/sounds/walk.mp3 -------------------------------------------------------------------------------- /bin/vehicle/Vehicle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/bin/vehicle/Vehicle.png -------------------------------------------------------------------------------- /embed/1x/heroMobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/1x/heroMobile.png -------------------------------------------------------------------------------- /embed/1x/worldYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/1x/worldYellow.png -------------------------------------------------------------------------------- /embed/1x/yellowBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/1x/yellowBackground.png -------------------------------------------------------------------------------- /embed/2x/heroMobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/2x/heroMobile.png -------------------------------------------------------------------------------- /embed/2x/worldYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/2x/worldYellow.png -------------------------------------------------------------------------------- /embed/2x/yellowBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/2x/yellowBackground.png -------------------------------------------------------------------------------- /embed/3D/carskin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/3D/carskin.jpg -------------------------------------------------------------------------------- /embed/3D/pknight.md2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/3D/pknight.md2 -------------------------------------------------------------------------------- /embed/3D/pknight1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/3D/pknight1.png -------------------------------------------------------------------------------- /embed/3D/pknight2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/3D/pknight2.png -------------------------------------------------------------------------------- /embed/3D/pknight3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/3D/pknight3.png -------------------------------------------------------------------------------- /embed/3D/pknight4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/3D/pknight4.png -------------------------------------------------------------------------------- /embed/ArialFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/ArialFont.png -------------------------------------------------------------------------------- /embed/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/Hero.png -------------------------------------------------------------------------------- /embed/ParticleTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/ParticleTexture.png -------------------------------------------------------------------------------- /embed/bg_hills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/bg_hills.png -------------------------------------------------------------------------------- /embed/buckshot_platforming_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/buckshot_platforming_black.png -------------------------------------------------------------------------------- /embed/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/cloud.png -------------------------------------------------------------------------------- /embed/crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/crate.png -------------------------------------------------------------------------------- /embed/dragonbones/DragonWithClothes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/dragonbones/DragonWithClothes.png -------------------------------------------------------------------------------- /embed/games/braid/Braid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/braid/Braid.png -------------------------------------------------------------------------------- /embed/games/braid/Gymnopedie No 3_compressed.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/braid/Gymnopedie No 3_compressed.mp3 -------------------------------------------------------------------------------- /embed/games/braid/LICENSE.md: -------------------------------------------------------------------------------- 1 | [Braid assets](http://www.davidhellman.net/braidbrief.htm) thanks to David Hellman. -------------------------------------------------------------------------------- /embed/games/braid/bg_2_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/braid/bg_2_01.jpg -------------------------------------------------------------------------------- /embed/games/braid/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/braid/texture.png -------------------------------------------------------------------------------- /embed/games/flappybird/ding.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/flappybird/ding.mp3 -------------------------------------------------------------------------------- /embed/games/flappybird/flappybird.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/flappybird/flappybird.ttf -------------------------------------------------------------------------------- /embed/games/flappybird/smack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/flappybird/smack.mp3 -------------------------------------------------------------------------------- /embed/games/flappybird/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/flappybird/sprites.png -------------------------------------------------------------------------------- /embed/games/flappybird/whoosh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/flappybird/whoosh.mp3 -------------------------------------------------------------------------------- /embed/games/hungryhero/fonts/bitmap/fontRegular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/fonts/bitmap/fontRegular.png -------------------------------------------------------------------------------- /embed/games/hungryhero/fonts/bitmap/fontScoreLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/fonts/bitmap/fontScoreLabel.png -------------------------------------------------------------------------------- /embed/games/hungryhero/fonts/bitmap/fontScoreValue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/fonts/bitmap/fontScoreValue.png -------------------------------------------------------------------------------- /embed/games/hungryhero/graphics/bgLayer1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/graphics/bgLayer1.jpg -------------------------------------------------------------------------------- /embed/games/hungryhero/graphics/bgWelcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/graphics/bgWelcome.jpg -------------------------------------------------------------------------------- /embed/games/hungryhero/graphics/mySpritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/graphics/mySpritesheet.png -------------------------------------------------------------------------------- /embed/games/hungryhero/icons/icon_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/icons/icon_114.png -------------------------------------------------------------------------------- /embed/games/hungryhero/icons/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/icons/icon_128.png -------------------------------------------------------------------------------- /embed/games/hungryhero/icons/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/icons/icon_16.png -------------------------------------------------------------------------------- /embed/games/hungryhero/icons/icon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/icons/icon_29.png -------------------------------------------------------------------------------- /embed/games/hungryhero/icons/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/icons/icon_32.png -------------------------------------------------------------------------------- /embed/games/hungryhero/icons/icon_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/icons/icon_36.png -------------------------------------------------------------------------------- /embed/games/hungryhero/icons/icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/icons/icon_48.png -------------------------------------------------------------------------------- /embed/games/hungryhero/icons/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/icons/icon_512.png -------------------------------------------------------------------------------- /embed/games/hungryhero/icons/icon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/icons/icon_57.png -------------------------------------------------------------------------------- /embed/games/hungryhero/icons/icon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/icons/icon_72.png -------------------------------------------------------------------------------- /embed/games/hungryhero/particles/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/particles/texture.png -------------------------------------------------------------------------------- /embed/games/hungryhero/sounds/bgGame.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/sounds/bgGame.mp3 -------------------------------------------------------------------------------- /embed/games/hungryhero/sounds/bgWelcome.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/sounds/bgWelcome.mp3 -------------------------------------------------------------------------------- /embed/games/hungryhero/sounds/coffee.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/sounds/coffee.mp3 -------------------------------------------------------------------------------- /embed/games/hungryhero/sounds/eat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/sounds/eat.mp3 -------------------------------------------------------------------------------- /embed/games/hungryhero/sounds/hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/sounds/hit.mp3 -------------------------------------------------------------------------------- /embed/games/hungryhero/sounds/hurt.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/sounds/hurt.mp3 -------------------------------------------------------------------------------- /embed/games/hungryhero/sounds/lose.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/sounds/lose.mp3 -------------------------------------------------------------------------------- /embed/games/hungryhero/sounds/mushroom.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/hungryhero/sounds/mushroom.mp3 -------------------------------------------------------------------------------- /embed/games/live4sales/1x/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/live4sales/1x/menu.png -------------------------------------------------------------------------------- /embed/games/live4sales/1x/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/live4sales/1x/objects.png -------------------------------------------------------------------------------- /embed/games/live4sales/2x/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/live4sales/2x/menu.png -------------------------------------------------------------------------------- /embed/games/live4sales/2x/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/live4sales/2x/objects.png -------------------------------------------------------------------------------- /embed/games/live4sales/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/live4sales/background.png -------------------------------------------------------------------------------- /embed/games/tinywings/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/tinywings/ball.png -------------------------------------------------------------------------------- /embed/games/tinywings/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/games/tinywings/ground.png -------------------------------------------------------------------------------- /embed/hero_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/hero_idle.png -------------------------------------------------------------------------------- /embed/hero_jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/hero_jump.png -------------------------------------------------------------------------------- /embed/hero_static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/hero_static.png -------------------------------------------------------------------------------- /embed/hero_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/hero_walk.png -------------------------------------------------------------------------------- /embed/particlePicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/particlePicked.png -------------------------------------------------------------------------------- /embed/small_crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/small_crate.png -------------------------------------------------------------------------------- /embed/soundpatchdemo/click_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/soundpatchdemo/click_screen.png -------------------------------------------------------------------------------- /embed/soundpatchdemo/load_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/soundpatchdemo/load_screen.png -------------------------------------------------------------------------------- /embed/soundpatchdemo/website_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/soundpatchdemo/website_frame.png -------------------------------------------------------------------------------- /embed/spine/spineboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/spine/spineboy.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_0_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_0_01.jpg -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_0_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_0_02.jpg -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_0_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_0_03.jpg -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_0_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_0_04.jpg -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_0_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_0_05.jpg -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_0_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_0_06.jpg -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_0_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_0_07.jpg -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_0_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_0_08.jpg -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_1_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_1_01.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_1_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_1_02.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_1_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_1_03.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_1_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_1_04.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_1_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_1_05.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_1_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_1_06.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_1_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_1_07.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_1_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_1_08.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_2_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_2_01.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_2_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_2_02.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_2_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_2_03.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_2_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_2_04.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_2_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_2_05.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_2_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_2_06.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_2_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_2_07.png -------------------------------------------------------------------------------- /embed/starlingtiles/starlingtiles_2_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/starlingtiles/starlingtiles_2_08.png -------------------------------------------------------------------------------- /embed/tiledmap/Genetica-tiles-atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/Genetica-tiles-atlas.png -------------------------------------------------------------------------------- /embed/tiledmap/Genetica-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/Genetica-tiles.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_01.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_02.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_03.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_04.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_05.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_06.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_07.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_08.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_09.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_10.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_11.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_12.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_13.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_14.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_15.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_16.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_17.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_18.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_19.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_20.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_21.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_22.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_23.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_24.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_25.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_26.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_27.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_28.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_29.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_30.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_31.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_32.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_33.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_34.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_35.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_36.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_37.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_38.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_39.png -------------------------------------------------------------------------------- /embed/tiledmap/images/images_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/images/images_40.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/README.md: -------------------------------------------------------------------------------- 1 | Thoses are the same assets than in bin/multi-resolutions/. 2 | They are used here to generate the tilesets. Be sure to name each tile with their xml's name. 3 | This spritesheet is never loaded. -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_000.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_004.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_006.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_008.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_009.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_010.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_011.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_012.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_013.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_014.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_015.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_016.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_017.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/blocks/blocks_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/blocks/blocks_018.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_000.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_004.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_006.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_008.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_009.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_010.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_011.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_012.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_013.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_014.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_015.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_016.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clay/clay_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clay/clay_017.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clouds/cloud_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clouds/cloud_000.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clouds/cloud_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clouds/cloud_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clouds/cloud_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clouds/cloud_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clouds/cloud_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clouds/cloud_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clouds/cloud_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clouds/cloud_004.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/clouds/cloud_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/clouds/cloud_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_000.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_004.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_006.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_008.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_009.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_010.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_011.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dangers/dangers_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dangers/dangers_012.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_000.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_004.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_006.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_008.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_009.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/dungeon/dungeon_010.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/fences/fences_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/fences/fences_000.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/fences/fences_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/fences/fences_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/fences/fences_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/fences/fences_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/fences/fences_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/fences/fences_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/flags/flags_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/flags/flags_000.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/flags/flags_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/flags/flags_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/flags/flags_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/flags/flags_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/flags/flags_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/flags/flags_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/flags/flags_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/flags/flags_004.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/flags/flags_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/flags/flags_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/flags/flags_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/flags/flags_006.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/flags/flags_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/flags/flags_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/flags/flags_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/flags/flags_008.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/flags/flags_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/flags/flags_009.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/flags/flags_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/flags/flags_010.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/flags/flags_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/flags/flags_011.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_000.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_004.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_006.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_008.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_009.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_010.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_011.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_012.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_013.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_014.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_015.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_016.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grass/grass_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grass/grass_017.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_000.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_004.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_006.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_008.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_009.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_010.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_011.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_012.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_013.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_014.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_015.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_016.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/grave/grave_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/grave/grave_017.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/powerups/diamond_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/powerups/diamond_blue.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/powerups/pu_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/powerups/pu_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/powerups/pu_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/powerups/pu_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/powerups/pu_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/powerups/pu_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/powerups/pu_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/powerups/pu_004.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/powerups/pu_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/powerups/pu_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/powerups/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/powerups/star.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/props/bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/props/bush.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/props/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/props/cactus.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/props/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/props/grass.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/props/props_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/props/props_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/props/props_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/props/props_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/props/props_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/props/props_006.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/props/props_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/props/props_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/props/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/props/stone.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_000.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_004.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_006.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_008.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_009.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_010.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_011.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_012.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_013.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_014.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_015.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_016.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/sand/sand_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/sand/sand_017.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/signs/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/signs/exit.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/signs/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/signs/left.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/signs/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/signs/right.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/signs/sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/signs/sign.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_000.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_004.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_006.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_008.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_009.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_010.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_011.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_012.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_013.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_014.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_015.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_016.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/snow/snow_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/snow/snow_017.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_000.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_001.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_002.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_003.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_004.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_006.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_008.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_009.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_010.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_011.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_012.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_013.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_014.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_015.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_016.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/stone/stone_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/stone/stone_017.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/key_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/key_blue.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/key_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/key_green.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/key_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/key_orange.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/key_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/key_yellow.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/lock_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/lock_blue.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/lock_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/lock_green.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/lock_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/lock_orange.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/lock_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/lock_yellow.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/trigger_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/trigger_005.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/trigger_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/trigger_006.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/trigger_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/trigger_007.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/trigger_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/trigger_008.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/trigger_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/trigger_009.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/trigger_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/trigger_010.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/trigger_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/trigger_011.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/trigger_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/trigger_012.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/trigger_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/trigger_018.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/trigger_019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/trigger_019.png -------------------------------------------------------------------------------- /embed/tiledmap/multi-resolutions/tiles/triggers/trigger_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/tiledmap/multi-resolutions/tiles/triggers/trigger_020.png -------------------------------------------------------------------------------- /embed/yellowParticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/embed/yellowParticle.png -------------------------------------------------------------------------------- /fla/LevelA1.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/LevelA1.fla -------------------------------------------------------------------------------- /fla/LevelA2.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/LevelA2.fla -------------------------------------------------------------------------------- /fla/SoundPatchDemo/HUD.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/SoundPatchDemo/HUD.fla -------------------------------------------------------------------------------- /fla/SoundPatchDemo/MessageBox.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/SoundPatchDemo/MessageBox.fla -------------------------------------------------------------------------------- /fla/SoundPatchDemo/SoundPatchDemo.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/SoundPatchDemo/SoundPatchDemo.fla -------------------------------------------------------------------------------- /fla/SoundPatchDemo/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/SoundPatchDemo/leaf.png -------------------------------------------------------------------------------- /fla/SoundPatchDemo/mb.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/SoundPatchDemo/mb.fla -------------------------------------------------------------------------------- /fla/SoundPatchDemo/mf.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/SoundPatchDemo/mf.fla -------------------------------------------------------------------------------- /fla/monster_character-SpriteArt.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/monster_character-SpriteArt.fla -------------------------------------------------------------------------------- /fla/monster_character-StarlingArt.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/monster_character-StarlingArt.fla -------------------------------------------------------------------------------- /fla/patch_character-SpriteArt.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/patch_character-SpriteArt.fla -------------------------------------------------------------------------------- /fla/patch_character-StarlingArt.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/patch_character-StarlingArt.fla -------------------------------------------------------------------------------- /fla/starlingtiles_demo.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/fla/starlingtiles_demo.fla -------------------------------------------------------------------------------- /lib/Reactor_2.0.1.1271_Release.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaVikingCode/Citrus-Engine-Examples/33d7d66777e0aca3d381f1b2868eb9dfe9af45fd/lib/Reactor_2.0.1.1271_Release.swc --------------------------------------------------------------------------------