├── .gitattributes ├── .gitignore ├── Dungeon Escape ├── .gradle │ ├── 4.6 │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileHashes │ │ │ └── fileHashes.lock │ │ └── taskHistory │ │ │ └── taskHistory.lock │ └── buildOutputCleanup │ │ ├── buildOutputCleanup.lock │ │ └── cache.properties ├── .vs │ └── Dungeon Escape │ │ └── v15 │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal ├── Assets │ ├── Assets.meta │ ├── Assets │ │ ├── Audio.meta │ │ ├── Audio │ │ │ ├── BG.meta │ │ │ ├── BG │ │ │ │ ├── Dragon War.mp3 │ │ │ │ ├── Dragon War.mp3.meta │ │ │ │ ├── Rock Background Music - No Copyright.mp3 │ │ │ │ └── Rock Background Music - No Copyright.mp3.meta │ │ │ ├── Menu.meta │ │ │ ├── Menu │ │ │ │ ├── Menu Select_V1.wav │ │ │ │ ├── Menu Select_V1.wav.meta │ │ │ │ ├── Menu Switching_V1-01.wav │ │ │ │ └── Menu Switching_V1-01.wav.meta │ │ │ ├── SPIDER.meta │ │ │ ├── SPIDER │ │ │ │ ├── Spider Attack.meta │ │ │ │ ├── Spider Attack │ │ │ │ │ ├── Spider Attack_V1.wav │ │ │ │ │ └── Spider Attack_V1.wav.meta │ │ │ │ ├── Spider Death.meta │ │ │ │ ├── Spider Death │ │ │ │ │ ├── Spider Death_V1.wav │ │ │ │ │ └── Spider Death_V1.wav.meta │ │ │ │ ├── Spider Footstep.meta │ │ │ │ ├── Spider Footstep │ │ │ │ │ ├── Spider Footstep_V1.wav │ │ │ │ │ └── Spider Footstep_V1.wav.meta │ │ │ │ ├── Spider Idle.meta │ │ │ │ └── Spider Idle │ │ │ │ │ ├── Spider Idle_V1.wav │ │ │ │ │ └── Spider Idle_V1.wav.meta │ │ │ ├── WARRIOR.meta │ │ │ ├── WARRIOR │ │ │ │ ├── Warrior_CoinPickup.meta │ │ │ │ ├── Warrior_CoinPickup │ │ │ │ │ ├── Warrior Coin Pickup_V1.wav │ │ │ │ │ └── Warrior Coin Pickup_V1.wav.meta │ │ │ │ ├── Warrior_Death Animation.meta │ │ │ │ ├── Warrior_Death Animation │ │ │ │ │ ├── Warrior Death Animation_V1-01.wav │ │ │ │ │ └── Warrior Death Animation_V1-01.wav.meta │ │ │ │ ├── Warrior_FlamingSwordJump.meta │ │ │ │ ├── Warrior_FlamingSwordJump │ │ │ │ │ ├── Warrior Jump With Flaming Sword_V1.wav │ │ │ │ │ └── Warrior Jump With Flaming Sword_V1.wav.meta │ │ │ │ ├── Warrior_HealthGain.meta │ │ │ │ ├── Warrior_HealthGain │ │ │ │ │ ├── Warrior Health_V1.wav │ │ │ │ │ └── Warrior Health_V1.wav.meta │ │ │ │ ├── Warrior_Hit Animation.meta │ │ │ │ ├── Warrior_Hit Animation │ │ │ │ │ ├── Warrior HIt Animation_V1.wav │ │ │ │ │ └── Warrior HIt Animation_V1.wav.meta │ │ │ │ ├── Warrior_Itemcollection.meta │ │ │ │ ├── Warrior_Itemcollection │ │ │ │ │ ├── Warrior Item Collection_V1.wav │ │ │ │ │ └── Warrior Item Collection_V1.wav.meta │ │ │ │ ├── Warrior_Jump.meta │ │ │ │ ├── Warrior_Jump │ │ │ │ │ ├── WarriorJump_V1.wav │ │ │ │ │ └── WarriorJump_V1.wav.meta │ │ │ │ ├── Warrior_Jumpwithsword.meta │ │ │ │ ├── Warrior_Jumpwithsword │ │ │ │ │ ├── Warrior Jump With Sword_V1-01.wav │ │ │ │ │ └── Warrior Jump With Sword_V1-01.wav.meta │ │ │ │ ├── Warrior_Squishycut.meta │ │ │ │ ├── Warrior_Squishycut │ │ │ │ │ ├── Warrior Squishy Cut_V1.wav │ │ │ │ │ └── Warrior Squishy Cut_V1.wav.meta │ │ │ │ ├── Warrior_SwingingSword.meta │ │ │ │ ├── Warrior_SwingingSword │ │ │ │ │ ├── Warrior Swinging Sword_V1.wav │ │ │ │ │ └── Warrior Swinging Sword_V1.wav.meta │ │ │ │ ├── Warrior_SwingingSwordflame.meta │ │ │ │ └── Warrior_SwingingSwordflame │ │ │ │ │ ├── Swingin Sword Flame_V1-01.wav │ │ │ │ │ └── Swingin Sword Flame_V1-01.wav.meta │ │ │ ├── Warrior_CoinPickup.meta │ │ │ ├── Warrior_CoinPickup │ │ │ │ ├── Warrior_CoinPickup_V1.wav │ │ │ │ └── Warrior_CoinPickup_V1.wav.meta │ │ │ ├── Warrior_Death Animation.meta │ │ │ ├── Warrior_Death Animation │ │ │ │ ├── Warrior_Death Animation_V1.wav │ │ │ │ └── Warrior_Death Animation_V1.wav.meta │ │ │ ├── Warrior_FlamingSwordJump.meta │ │ │ ├── Warrior_FlamingSwordJump │ │ │ │ ├── Warrior_FlamingSwordJump_V1.wav │ │ │ │ └── Warrior_FlamingSwordJump_V1.wav.meta │ │ │ ├── Warrior_HealthGain.meta │ │ │ ├── Warrior_HealthGain │ │ │ │ ├── Warrior_HealthGain_V1.wav │ │ │ │ └── Warrior_HealthGain_V1.wav.meta │ │ │ ├── Warrior_Hit Animation.meta │ │ │ ├── Warrior_Hit Animation │ │ │ │ ├── Warrior_Hit Animation_V1.wav │ │ │ │ └── Warrior_Hit Animation_V1.wav.meta │ │ │ ├── Warrior_Itemcollection.meta │ │ │ ├── Warrior_Itemcollection │ │ │ │ ├── Warrior_Itemcollection_V1.wav │ │ │ │ └── Warrior_Itemcollection_V1.wav.meta │ │ │ ├── Warrior_Jump.meta │ │ │ ├── Warrior_Jump │ │ │ │ ├── Warrior_Jump_V1.wav │ │ │ │ └── Warrior_Jump_V1.wav.meta │ │ │ ├── Warrior_Jumpwithsword.meta │ │ │ ├── Warrior_Jumpwithsword │ │ │ │ ├── Warrior_Jumpwithsword_V1.wav │ │ │ │ └── Warrior_Jumpwithsword_V1.wav.meta │ │ │ ├── Warrior_Run.meta │ │ │ ├── Warrior_Run │ │ │ │ ├── Footsteps.mp3 │ │ │ │ └── Footsteps.mp3.meta │ │ │ ├── Warrior_Squishycut.meta │ │ │ ├── Warrior_Squishycut │ │ │ │ ├── Warrior_Squishycut_V1.wav │ │ │ │ └── Warrior_Squishycut_V1.wav.meta │ │ │ ├── Warrior_SwingingSword.meta │ │ │ ├── Warrior_SwingingSword │ │ │ │ ├── Warrior_SwingingSword_V1.wav │ │ │ │ └── Warrior_SwingingSword_V1.wav.meta │ │ │ ├── Warrior_SwingingSwordflame.meta │ │ │ ├── Warrior_SwingingSwordflame │ │ │ │ ├── Warrior_SwingingSwordflame_V1.wav │ │ │ │ └── Warrior_SwingingSwordflame_V1.wav.meta │ │ │ ├── moss giant.meta │ │ │ ├── moss giant │ │ │ │ ├── Moss Giant Attack.meta │ │ │ │ ├── Moss Giant Attack │ │ │ │ │ ├── Moss Giant Attack_V1.wav │ │ │ │ │ └── Moss Giant Attack_V1.wav.meta │ │ │ │ ├── Moss Giant Death Animation.meta │ │ │ │ ├── Moss Giant Death Animation │ │ │ │ │ ├── Moss Giant Death Animation_V1.wav │ │ │ │ │ └── Moss Giant Death Animation_V1.wav.meta │ │ │ │ ├── Moss Giant Footstep.meta │ │ │ │ ├── Moss Giant Footstep │ │ │ │ │ ├── Moss Giant Footstep_V1.wav │ │ │ │ │ └── Moss Giant Footstep_V1.wav.meta │ │ │ │ ├── Moss Giant Hit Animation.meta │ │ │ │ └── Moss Giant Hit Animation │ │ │ │ │ ├── Moss Giant Hit Animation_V1-01.wav │ │ │ │ │ └── Moss Giant Hit Animation_V1-01.wav.meta │ │ │ ├── skeleton.meta │ │ │ └── skeleton │ │ │ │ ├── Skeleton Axe Swoosh.meta │ │ │ │ ├── Skeleton Axe Swoosh │ │ │ │ ├── Skeletion Axe Swoosh_V1.wav │ │ │ │ └── Skeletion Axe Swoosh_V1.wav.meta │ │ │ │ ├── Skeleton Bone Break.meta │ │ │ │ ├── Skeleton Bone Break │ │ │ │ ├── Skeleton Bone Break_V1.wav │ │ │ │ └── Skeleton Bone Break_V1.wav.meta │ │ │ │ ├── Skeleton Death Animation.meta │ │ │ │ ├── Skeleton Death Animation │ │ │ │ ├── Skeleton Death Animation_V1.wav │ │ │ │ └── Skeleton Death Animation_V1.wav.meta │ │ │ │ ├── Skeleton Footstep.meta │ │ │ │ ├── Skeleton Footstep │ │ │ │ ├── Skeleton Footstep_V1.wav │ │ │ │ └── Skeleton Footstep_V1.wav.meta │ │ │ │ ├── Skeleton Gentle Bone Clacking.meta │ │ │ │ └── Skeleton Gentle Bone Clacking │ │ │ │ ├── Skeleton Gentle Bone Clacking_V1.wav │ │ │ │ └── Skeleton Gentle Bone Clacking_V1.wav.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── Acid.prefab │ │ │ ├── Acid.prefab.meta │ │ │ ├── Diamond.prefab │ │ │ └── Diamond.prefab.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── AdsManager.cs │ │ │ ├── AdsManager.cs.meta │ │ │ ├── Attack.cs │ │ │ ├── Attack.cs.meta │ │ │ ├── Diamond.cs │ │ │ ├── Diamond.cs.meta │ │ │ ├── Enemy.meta │ │ │ ├── Enemy │ │ │ │ ├── AcidEffect.cs │ │ │ │ ├── AcidEffect.cs.meta │ │ │ │ ├── Enemy.cs │ │ │ │ ├── Enemy.cs.meta │ │ │ │ ├── MossGiant.cs │ │ │ │ ├── MossGiant.cs.meta │ │ │ │ ├── Skeleton.cs │ │ │ │ ├── Skeleton.cs.meta │ │ │ │ ├── Spider.cs │ │ │ │ ├── Spider.cs.meta │ │ │ │ ├── SpiderAnimationEvent.cs │ │ │ │ └── SpiderAnimationEvent.cs.meta │ │ │ ├── GameManager.cs │ │ │ ├── GameManager.cs.meta │ │ │ ├── IDamagable.cs │ │ │ ├── IDamagable.cs.meta │ │ │ ├── MainMenu.cs │ │ │ ├── MainMenu.cs.meta │ │ │ ├── Player.meta │ │ │ ├── Player │ │ │ │ ├── Player.cs │ │ │ │ ├── Player.cs.meta │ │ │ │ ├── PlayerAnimation.cs │ │ │ │ └── PlayerAnimation.cs.meta │ │ │ ├── Shop.meta │ │ │ ├── Shop │ │ │ │ ├── Shop.cs │ │ │ │ └── Shop.cs.meta │ │ │ ├── Spikes.cs │ │ │ ├── Spikes.cs.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── UIManager.cs │ │ │ │ └── UIManager.cs.meta │ │ ├── Sprites.meta │ │ ├── Sprites │ │ │ ├── Characters.meta │ │ │ ├── Characters │ │ │ │ ├── Moss_Giant.meta │ │ │ │ ├── Moss_Giant │ │ │ │ │ ├── Animations.meta │ │ │ │ │ ├── Animations │ │ │ │ │ │ ├── Attack.anim │ │ │ │ │ │ ├── Attack.anim.meta │ │ │ │ │ │ ├── Death.anim │ │ │ │ │ │ ├── Death.anim.meta │ │ │ │ │ │ ├── Hit.anim │ │ │ │ │ │ ├── Hit.anim.meta │ │ │ │ │ │ ├── Idle.anim │ │ │ │ │ │ ├── Idle.anim.meta │ │ │ │ │ │ ├── Sprite.controller │ │ │ │ │ │ ├── Sprite.controller.meta │ │ │ │ │ │ ├── Walk.anim │ │ │ │ │ │ └── Walk.anim.meta │ │ │ │ │ ├── Moss_Giant_Attack.png │ │ │ │ │ ├── Moss_Giant_Attack.png.meta │ │ │ │ │ ├── Moss_Giant_Death.png │ │ │ │ │ ├── Moss_Giant_Death.png.meta │ │ │ │ │ ├── Moss_Giant_Hit.png │ │ │ │ │ ├── Moss_Giant_Hit.png.meta │ │ │ │ │ ├── Moss_Giant_Idle.png │ │ │ │ │ ├── Moss_Giant_Idle.png.meta │ │ │ │ │ ├── Moss_Giant_Walk.png │ │ │ │ │ └── Moss_Giant_Walk.png.meta │ │ │ │ ├── Player.meta │ │ │ │ ├── Player │ │ │ │ │ ├── Animations.meta │ │ │ │ │ ├── Animations │ │ │ │ │ │ ├── Attack.anim │ │ │ │ │ │ ├── Attack.anim.meta │ │ │ │ │ │ ├── Death.anim │ │ │ │ │ │ ├── Death.anim.meta │ │ │ │ │ │ ├── Hit.anim │ │ │ │ │ │ ├── Hit.anim.meta │ │ │ │ │ │ ├── Idle.anim │ │ │ │ │ │ ├── Idle.anim.meta │ │ │ │ │ │ ├── Jump.anim │ │ │ │ │ │ ├── Jump.anim.meta │ │ │ │ │ │ ├── Run.anim │ │ │ │ │ │ ├── Run.anim.meta │ │ │ │ │ │ ├── Sprite.controller │ │ │ │ │ │ └── Sprite.controller.meta │ │ │ │ │ ├── Death.png │ │ │ │ │ ├── Death.png.meta │ │ │ │ │ ├── Fire_Swing.png │ │ │ │ │ ├── Fire_Swing.png.meta │ │ │ │ │ ├── Hit.png │ │ │ │ │ ├── Hit.png.meta │ │ │ │ │ ├── Idle.png │ │ │ │ │ ├── Idle.png.meta │ │ │ │ │ ├── Jump.png │ │ │ │ │ ├── Jump.png.meta │ │ │ │ │ ├── Jump_Swing.png │ │ │ │ │ ├── Jump_Swing.png.meta │ │ │ │ │ ├── Jump_Swing_Fire.png │ │ │ │ │ ├── Jump_Swing_Fire.png.meta │ │ │ │ │ ├── Reg_Swing.png │ │ │ │ │ ├── Reg_Swing.png.meta │ │ │ │ │ ├── Warrior_Run.png │ │ │ │ │ ├── Warrior_Run.png.meta │ │ │ │ │ ├── Warrior_Walk.png │ │ │ │ │ └── Warrior_Walk.png.meta │ │ │ │ ├── Skeleton.meta │ │ │ │ ├── Skeleton │ │ │ │ │ ├── Animations.meta │ │ │ │ │ ├── Animations │ │ │ │ │ │ ├── Attack.anim │ │ │ │ │ │ ├── Attack.anim.meta │ │ │ │ │ │ ├── Death.anim │ │ │ │ │ │ ├── Death.anim.meta │ │ │ │ │ │ ├── Hit.anim │ │ │ │ │ │ ├── Hit.anim.meta │ │ │ │ │ │ ├── Idle.anim │ │ │ │ │ │ ├── Idle.anim.meta │ │ │ │ │ │ ├── Sprite.controller │ │ │ │ │ │ ├── Sprite.controller.meta │ │ │ │ │ │ ├── Walk.anim │ │ │ │ │ │ └── Walk.anim.meta │ │ │ │ │ ├── Skeleton_Attack.png │ │ │ │ │ ├── Skeleton_Attack.png.meta │ │ │ │ │ ├── Skeleton_Death.png │ │ │ │ │ ├── Skeleton_Death.png.meta │ │ │ │ │ ├── Skeleton_Hit.png │ │ │ │ │ ├── Skeleton_Hit.png.meta │ │ │ │ │ ├── Skeleton_Idle.png │ │ │ │ │ ├── Skeleton_Idle.png.meta │ │ │ │ │ ├── Skeleton_Walk.png │ │ │ │ │ └── Skeleton_Walk.png.meta │ │ │ │ ├── Spider.meta │ │ │ │ └── Spider │ │ │ │ │ ├── Animations.meta │ │ │ │ │ ├── Animations │ │ │ │ │ ├── Attack.anim │ │ │ │ │ ├── Attack.anim.meta │ │ │ │ │ ├── Death.anim │ │ │ │ │ ├── Death.anim.meta │ │ │ │ │ ├── Idle.anim │ │ │ │ │ ├── Idle.anim.meta │ │ │ │ │ ├── Sprite.controller │ │ │ │ │ ├── Sprite.controller.meta │ │ │ │ │ ├── Walk.anim │ │ │ │ │ └── Walk.anim.meta │ │ │ │ │ ├── Spider_Attack.png │ │ │ │ │ ├── Spider_Attack.png.meta │ │ │ │ │ ├── Spider_Death.png │ │ │ │ │ ├── Spider_Death.png.meta │ │ │ │ │ ├── Spider_Idle.png │ │ │ │ │ ├── Spider_Idle.png.meta │ │ │ │ │ ├── Spider_Walk.png │ │ │ │ │ └── Spider_Walk.png.meta │ │ │ ├── Effects.meta │ │ │ ├── Effects │ │ │ │ ├── Acid.png │ │ │ │ ├── Acid.png.meta │ │ │ │ ├── Animations.meta │ │ │ │ ├── Animations │ │ │ │ │ ├── Acid.controller │ │ │ │ │ ├── Acid.controller.meta │ │ │ │ │ ├── Acid_Effect.anim │ │ │ │ │ ├── Acid_Effect.anim.meta │ │ │ │ │ ├── Diamond.anim │ │ │ │ │ ├── Diamond.anim.meta │ │ │ │ │ ├── Diamond.controller │ │ │ │ │ ├── Diamond.controller.meta │ │ │ │ │ ├── Sword_Arc.anim │ │ │ │ │ ├── Sword_Arc.anim.meta │ │ │ │ │ ├── Sword_Arc.controller │ │ │ │ │ └── Sword_Arc.controller.meta │ │ │ │ ├── Diamond.png │ │ │ │ ├── Diamond.png.meta │ │ │ │ ├── Sword_One_Particle.png │ │ │ │ ├── Sword_One_Particle.png.meta │ │ │ │ ├── Sword_Three_Particle.png │ │ │ │ ├── Sword_Three_Particle.png.meta │ │ │ │ ├── Sword_Two_Particle.png │ │ │ │ ├── Sword_Two_Particle.png.meta │ │ │ │ ├── bloodScreen.png │ │ │ │ └── bloodScreen.png.meta │ │ │ ├── Fonts.meta │ │ │ ├── Fonts │ │ │ │ ├── CharlemagneStd-Regular.otf │ │ │ │ └── CharlemagneStd-Regular.otf.meta │ │ │ ├── Items.meta │ │ │ ├── Items │ │ │ │ ├── Candle.png │ │ │ │ ├── Candle.png.meta │ │ │ │ ├── Chest.png │ │ │ │ ├── Chest.png.meta │ │ │ │ ├── Lamp.png │ │ │ │ └── Lamp.png.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Floor.physicsMaterial2D │ │ │ │ └── Floor.physicsMaterial2D.meta │ │ │ ├── PlayStore.meta │ │ │ ├── PlayStore │ │ │ │ ├── icon.png │ │ │ │ ├── icon.png.meta │ │ │ │ ├── img_1.jpg │ │ │ │ ├── img_1.jpg.meta │ │ │ │ ├── img_2.jpg │ │ │ │ └── img_2.jpg.meta │ │ │ ├── Tiles.meta │ │ │ ├── Tiles │ │ │ │ ├── Diamond_Brush.asset │ │ │ │ ├── Diamond_Brush.asset.meta │ │ │ │ ├── Diamond_Brush_B.asset │ │ │ │ ├── Diamond_Brush_B.asset.meta │ │ │ │ ├── Environmental_Tiles.meta │ │ │ │ ├── Environmental_Tiles │ │ │ │ │ ├── Animated_Tiles.meta │ │ │ │ │ ├── Animated_Tiles │ │ │ │ │ │ ├── Water.meta │ │ │ │ │ │ ├── Water │ │ │ │ │ │ │ ├── Water.asset │ │ │ │ │ │ │ ├── Water.asset.meta │ │ │ │ │ │ │ ├── Water.png │ │ │ │ │ │ │ └── Water.png.meta │ │ │ │ │ │ ├── Waterfall.meta │ │ │ │ │ │ └── Waterfall │ │ │ │ │ │ │ ├── Waterfall_Center.asset │ │ │ │ │ │ │ ├── Waterfall_Center.asset.meta │ │ │ │ │ │ │ ├── Waterfall_Center.png │ │ │ │ │ │ │ ├── Waterfall_Center.png.meta │ │ │ │ │ │ │ ├── Waterfall_L.asset │ │ │ │ │ │ │ ├── Waterfall_L.asset.meta │ │ │ │ │ │ │ ├── Waterfall_L.png │ │ │ │ │ │ │ ├── Waterfall_L.png.meta │ │ │ │ │ │ │ ├── Waterfall_R.asset │ │ │ │ │ │ │ ├── Waterfall_R.asset.meta │ │ │ │ │ │ │ ├── Waterfall_R.png │ │ │ │ │ │ │ └── Waterfall_R.png.meta │ │ │ │ │ ├── BlackCave.meta │ │ │ │ │ ├── BlackCave │ │ │ │ │ │ ├── Black.asset │ │ │ │ │ │ ├── Black.asset.meta │ │ │ │ │ │ ├── BlackCave_06.asset │ │ │ │ │ │ ├── BlackCave_06.asset.meta │ │ │ │ │ │ ├── BlackCavern.png │ │ │ │ │ │ └── BlackCavern.png.meta │ │ │ │ │ ├── BlackCavern2.meta │ │ │ │ │ ├── BlackCavern2 │ │ │ │ │ │ ├── BlackCavern2.png │ │ │ │ │ │ ├── BlackCavern2.png.meta │ │ │ │ │ │ ├── BlackCavern2_01.asset │ │ │ │ │ │ ├── BlackCavern2_01.asset.meta │ │ │ │ │ │ ├── BlackCavern2_02.asset │ │ │ │ │ │ ├── BlackCavern2_02.asset.meta │ │ │ │ │ │ ├── BlackCavern2_03.asset │ │ │ │ │ │ ├── BlackCavern2_03.asset.meta │ │ │ │ │ │ ├── BlackCavern2_04.asset │ │ │ │ │ │ ├── BlackCavern2_04.asset.meta │ │ │ │ │ │ ├── BlackCavern2_06.asset │ │ │ │ │ │ ├── BlackCavern2_06.asset.meta │ │ │ │ │ │ ├── BlackCavern2_07.asset │ │ │ │ │ │ ├── BlackCavern2_07.asset.meta │ │ │ │ │ │ ├── BlackCavern2_08.asset │ │ │ │ │ │ ├── BlackCavern2_08.asset.meta │ │ │ │ │ │ ├── BlackCavern2_09.asset │ │ │ │ │ │ ├── BlackCavern2_09.asset.meta │ │ │ │ │ │ ├── BlackCavern2_11.asset │ │ │ │ │ │ ├── BlackCavern2_11.asset.meta │ │ │ │ │ │ ├── BlackCavern2_12.asset │ │ │ │ │ │ ├── BlackCavern2_12.asset.meta │ │ │ │ │ │ ├── BlackCavern2_13.asset │ │ │ │ │ │ ├── BlackCavern2_13.asset.meta │ │ │ │ │ │ ├── BlackCavern2_15.asset │ │ │ │ │ │ ├── BlackCavern2_15.asset.meta │ │ │ │ │ │ ├── BlackCavern2_16.asset │ │ │ │ │ │ └── BlackCavern2_16.asset.meta │ │ │ │ │ ├── BlackCavern3.meta │ │ │ │ │ ├── BlackCavern3 │ │ │ │ │ │ ├── BlackCavern3.png │ │ │ │ │ │ ├── BlackCavern3.png.meta │ │ │ │ │ │ ├── BlackCavern3_0.asset │ │ │ │ │ │ ├── BlackCavern3_0.asset.meta │ │ │ │ │ │ ├── BlackCavern3_1.asset │ │ │ │ │ │ ├── BlackCavern3_1.asset.meta │ │ │ │ │ │ ├── BlackCavern3_10.asset │ │ │ │ │ │ ├── BlackCavern3_10.asset.meta │ │ │ │ │ │ ├── BlackCavern3_11.asset │ │ │ │ │ │ ├── BlackCavern3_11.asset.meta │ │ │ │ │ │ ├── BlackCavern3_12.asset │ │ │ │ │ │ ├── BlackCavern3_12.asset.meta │ │ │ │ │ │ ├── BlackCavern3_13.asset │ │ │ │ │ │ ├── BlackCavern3_13.asset.meta │ │ │ │ │ │ ├── BlackCavern3_14.asset │ │ │ │ │ │ ├── BlackCavern3_14.asset.meta │ │ │ │ │ │ ├── BlackCavern3_15.asset │ │ │ │ │ │ ├── BlackCavern3_15.asset.meta │ │ │ │ │ │ ├── BlackCavern3_16.asset │ │ │ │ │ │ ├── BlackCavern3_16.asset.meta │ │ │ │ │ │ ├── BlackCavern3_17.asset │ │ │ │ │ │ ├── BlackCavern3_17.asset.meta │ │ │ │ │ │ ├── BlackCavern3_18.asset │ │ │ │ │ │ ├── BlackCavern3_18.asset.meta │ │ │ │ │ │ ├── BlackCavern3_19.asset │ │ │ │ │ │ ├── BlackCavern3_19.asset.meta │ │ │ │ │ │ ├── BlackCavern3_2.asset │ │ │ │ │ │ ├── BlackCavern3_2.asset.meta │ │ │ │ │ │ ├── BlackCavern3_20.asset │ │ │ │ │ │ ├── BlackCavern3_20.asset.meta │ │ │ │ │ │ ├── BlackCavern3_21.asset │ │ │ │ │ │ ├── BlackCavern3_21.asset.meta │ │ │ │ │ │ ├── BlackCavern3_22.asset │ │ │ │ │ │ ├── BlackCavern3_22.asset.meta │ │ │ │ │ │ ├── BlackCavern3_23.asset │ │ │ │ │ │ ├── BlackCavern3_23.asset.meta │ │ │ │ │ │ ├── BlackCavern3_24.asset │ │ │ │ │ │ ├── BlackCavern3_24.asset.meta │ │ │ │ │ │ ├── BlackCavern3_25.asset │ │ │ │ │ │ ├── BlackCavern3_25.asset.meta │ │ │ │ │ │ ├── BlackCavern3_27.asset │ │ │ │ │ │ ├── BlackCavern3_27.asset.meta │ │ │ │ │ │ ├── BlackCavern3_28.asset │ │ │ │ │ │ ├── BlackCavern3_28.asset.meta │ │ │ │ │ │ ├── BlackCavern3_29.asset │ │ │ │ │ │ ├── BlackCavern3_29.asset.meta │ │ │ │ │ │ ├── BlackCavern3_3.asset │ │ │ │ │ │ ├── BlackCavern3_3.asset.meta │ │ │ │ │ │ ├── BlackCavern3_30.asset │ │ │ │ │ │ ├── BlackCavern3_30.asset.meta │ │ │ │ │ │ ├── BlackCavern3_31.asset │ │ │ │ │ │ ├── BlackCavern3_31.asset.meta │ │ │ │ │ │ ├── BlackCavern3_33.asset │ │ │ │ │ │ ├── BlackCavern3_33.asset.meta │ │ │ │ │ │ ├── BlackCavern3_34.asset │ │ │ │ │ │ ├── BlackCavern3_34.asset.meta │ │ │ │ │ │ ├── BlackCavern3_35.asset │ │ │ │ │ │ ├── BlackCavern3_35.asset.meta │ │ │ │ │ │ ├── BlackCavern3_36.asset │ │ │ │ │ │ ├── BlackCavern3_36.asset.meta │ │ │ │ │ │ ├── BlackCavern3_37.asset │ │ │ │ │ │ ├── BlackCavern3_37.asset.meta │ │ │ │ │ │ ├── BlackCavern3_4.asset │ │ │ │ │ │ ├── BlackCavern3_4.asset.meta │ │ │ │ │ │ ├── BlackCavern3_40.asset │ │ │ │ │ │ ├── BlackCavern3_40.asset.meta │ │ │ │ │ │ ├── BlackCavern3_41.asset │ │ │ │ │ │ ├── BlackCavern3_41.asset.meta │ │ │ │ │ │ ├── BlackCavern3_42.asset │ │ │ │ │ │ ├── BlackCavern3_42.asset.meta │ │ │ │ │ │ ├── BlackCavern3_43.asset │ │ │ │ │ │ ├── BlackCavern3_43.asset.meta │ │ │ │ │ │ ├── BlackCavern3_44.asset │ │ │ │ │ │ ├── BlackCavern3_44.asset.meta │ │ │ │ │ │ ├── BlackCavern3_45.asset │ │ │ │ │ │ ├── BlackCavern3_45.asset.meta │ │ │ │ │ │ ├── BlackCavern3_46.asset │ │ │ │ │ │ ├── BlackCavern3_46.asset.meta │ │ │ │ │ │ ├── BlackCavern3_47.asset │ │ │ │ │ │ ├── BlackCavern3_47.asset.meta │ │ │ │ │ │ ├── BlackCavern3_48.asset │ │ │ │ │ │ ├── BlackCavern3_48.asset.meta │ │ │ │ │ │ ├── BlackCavern3_49.asset │ │ │ │ │ │ ├── BlackCavern3_49.asset.meta │ │ │ │ │ │ ├── BlackCavern3_5.asset │ │ │ │ │ │ ├── BlackCavern3_5.asset.meta │ │ │ │ │ │ ├── BlackCavern3_50.asset │ │ │ │ │ │ ├── BlackCavern3_50.asset.meta │ │ │ │ │ │ ├── BlackCavern3_51.asset │ │ │ │ │ │ ├── BlackCavern3_51.asset.meta │ │ │ │ │ │ ├── BlackCavern3_52.asset │ │ │ │ │ │ ├── BlackCavern3_52.asset.meta │ │ │ │ │ │ ├── BlackCavern3_53.asset │ │ │ │ │ │ ├── BlackCavern3_53.asset.meta │ │ │ │ │ │ ├── BlackCavern3_54.asset │ │ │ │ │ │ ├── BlackCavern3_54.asset.meta │ │ │ │ │ │ ├── BlackCavern3_55.asset │ │ │ │ │ │ ├── BlackCavern3_55.asset.meta │ │ │ │ │ │ ├── BlackCavern3_56.asset │ │ │ │ │ │ ├── BlackCavern3_56.asset.meta │ │ │ │ │ │ ├── BlackCavern3_57.asset │ │ │ │ │ │ ├── BlackCavern3_57.asset.meta │ │ │ │ │ │ ├── BlackCavern3_58.asset │ │ │ │ │ │ ├── BlackCavern3_58.asset.meta │ │ │ │ │ │ ├── BlackCavern3_6.asset │ │ │ │ │ │ ├── BlackCavern3_6.asset.meta │ │ │ │ │ │ ├── BlackCavern3_7.asset │ │ │ │ │ │ ├── BlackCavern3_7.asset.meta │ │ │ │ │ │ ├── BlackCavern3_8.asset │ │ │ │ │ │ ├── BlackCavern3_8.asset.meta │ │ │ │ │ │ ├── BlackCavern3_9.asset │ │ │ │ │ │ └── BlackCavern3_9.asset.meta │ │ │ │ │ ├── BlackOverlay.meta │ │ │ │ │ ├── BlackOverlay │ │ │ │ │ │ ├── BlackOverlay.png │ │ │ │ │ │ ├── BlackOverlay.png.meta │ │ │ │ │ │ ├── BlackOverlayRuleTile.asset │ │ │ │ │ │ ├── BlackOverlayRuleTile.asset.meta │ │ │ │ │ │ ├── BlackOverlay_17.png │ │ │ │ │ │ ├── BlackOverlay_17.png.meta │ │ │ │ │ │ ├── BlackOverlay_18.png │ │ │ │ │ │ └── BlackOverlay_18.png.meta │ │ │ │ │ ├── Bricks.meta │ │ │ │ │ ├── Bricks │ │ │ │ │ │ ├── Bricks.png │ │ │ │ │ │ ├── Bricks.png.meta │ │ │ │ │ │ ├── Bricks_19.asset │ │ │ │ │ │ ├── Bricks_19.asset.meta │ │ │ │ │ │ ├── Bricks_20.asset │ │ │ │ │ │ ├── Bricks_20.asset.meta │ │ │ │ │ │ ├── Bricks_25.asset │ │ │ │ │ │ ├── Bricks_25.asset.meta │ │ │ │ │ │ ├── Bricks_26.asset │ │ │ │ │ │ ├── Bricks_26.asset.meta │ │ │ │ │ │ ├── Bricks_35.asset │ │ │ │ │ │ ├── Bricks_35.asset.meta │ │ │ │ │ │ ├── Bricks_36.asset │ │ │ │ │ │ ├── Bricks_36.asset.meta │ │ │ │ │ │ ├── Bricks_38.asset │ │ │ │ │ │ ├── Bricks_38.asset.meta │ │ │ │ │ │ ├── Bricks_39.asset │ │ │ │ │ │ ├── Bricks_39.asset.meta │ │ │ │ │ │ ├── Bricks_40.asset │ │ │ │ │ │ ├── Bricks_40.asset.meta │ │ │ │ │ │ ├── Bricks_41.asset │ │ │ │ │ │ ├── Bricks_41.asset.meta │ │ │ │ │ │ ├── Bricks_42.asset │ │ │ │ │ │ ├── Bricks_42.asset.meta │ │ │ │ │ │ ├── Bricks_44.asset │ │ │ │ │ │ ├── Bricks_44.asset.meta │ │ │ │ │ │ ├── Bricks_45.asset │ │ │ │ │ │ ├── Bricks_45.asset.meta │ │ │ │ │ │ ├── Bricks_47.asset │ │ │ │ │ │ ├── Bricks_47.asset.meta │ │ │ │ │ │ ├── Bricks_48.asset │ │ │ │ │ │ ├── Bricks_48.asset.meta │ │ │ │ │ │ ├── Bricks_49.asset │ │ │ │ │ │ ├── Bricks_49.asset.meta │ │ │ │ │ │ ├── Bricks_50.asset │ │ │ │ │ │ └── Bricks_50.asset.meta │ │ │ │ │ ├── Bricks2.meta │ │ │ │ │ ├── Bricks2 │ │ │ │ │ │ ├── Bricks2.png │ │ │ │ │ │ ├── Bricks2.png.meta │ │ │ │ │ │ ├── Bricks2_15.asset │ │ │ │ │ │ ├── Bricks2_15.asset.meta │ │ │ │ │ │ ├── Bricks2_16.asset │ │ │ │ │ │ ├── Bricks2_16.asset.meta │ │ │ │ │ │ ├── Bricks2_17.asset │ │ │ │ │ │ ├── Bricks2_17.asset.meta │ │ │ │ │ │ ├── Bricks2_23.asset │ │ │ │ │ │ ├── Bricks2_23.asset.meta │ │ │ │ │ │ ├── Bricks2_26.asset │ │ │ │ │ │ ├── Bricks2_26.asset.meta │ │ │ │ │ │ ├── Bricks2_3.asset │ │ │ │ │ │ ├── Bricks2_3.asset.meta │ │ │ │ │ │ ├── Bricks2_32.asset │ │ │ │ │ │ ├── Bricks2_32.asset.meta │ │ │ │ │ │ ├── Bricks2_33.asset │ │ │ │ │ │ ├── Bricks2_33.asset.meta │ │ │ │ │ │ ├── Bricks2_34.asset │ │ │ │ │ │ ├── Bricks2_34.asset.meta │ │ │ │ │ │ ├── Bricks2_37.asset │ │ │ │ │ │ ├── Bricks2_37.asset.meta │ │ │ │ │ │ ├── Bricks2_39.asset │ │ │ │ │ │ ├── Bricks2_39.asset.meta │ │ │ │ │ │ ├── Bricks2_46.asset │ │ │ │ │ │ ├── Bricks2_46.asset.meta │ │ │ │ │ │ ├── Bricks2_47.asset │ │ │ │ │ │ ├── Bricks2_47.asset.meta │ │ │ │ │ │ ├── Bricks2_49.asset │ │ │ │ │ │ ├── Bricks2_49.asset.meta │ │ │ │ │ │ ├── Bricks2_52.asset │ │ │ │ │ │ ├── Bricks2_52.asset.meta │ │ │ │ │ │ ├── Bricks2_54.asset │ │ │ │ │ │ ├── Bricks2_54.asset.meta │ │ │ │ │ │ ├── Bricks2_62.asset │ │ │ │ │ │ ├── Bricks2_62.asset.meta │ │ │ │ │ │ ├── Bricks2_9.asset │ │ │ │ │ │ └── Bricks2_9.asset.meta │ │ │ │ │ ├── ColumnArches.meta │ │ │ │ │ ├── ColumnArches │ │ │ │ │ │ ├── columnArches copy.png │ │ │ │ │ │ ├── columnArches copy.png.meta │ │ │ │ │ │ ├── columnArches copy_0.asset │ │ │ │ │ │ ├── columnArches copy_0.asset.meta │ │ │ │ │ │ ├── columnArches copy_1.asset │ │ │ │ │ │ ├── columnArches copy_1.asset.meta │ │ │ │ │ │ ├── columnArches copy_12.asset │ │ │ │ │ │ ├── columnArches copy_12.asset.meta │ │ │ │ │ │ ├── columnArches copy_2.asset │ │ │ │ │ │ ├── columnArches copy_2.asset.meta │ │ │ │ │ │ ├── columnArches copy_3.asset │ │ │ │ │ │ ├── columnArches copy_3.asset.meta │ │ │ │ │ │ ├── columnArches copy_4.asset │ │ │ │ │ │ ├── columnArches copy_4.asset.meta │ │ │ │ │ │ ├── columnArches copy_5.asset │ │ │ │ │ │ ├── columnArches copy_5.asset.meta │ │ │ │ │ │ ├── columnArches copy_6.asset │ │ │ │ │ │ ├── columnArches copy_6.asset.meta │ │ │ │ │ │ ├── columnArches copy_7.asset │ │ │ │ │ │ ├── columnArches copy_7.asset.meta │ │ │ │ │ │ ├── columnArches copy_9.asset │ │ │ │ │ │ └── columnArches copy_9.asset.meta │ │ │ │ │ ├── Environment.meta │ │ │ │ │ ├── Environment │ │ │ │ │ │ ├── DirtDeclineLeft.asset │ │ │ │ │ │ ├── DirtDeclineLeft.asset.meta │ │ │ │ │ │ ├── DirtDeclineRight.asset │ │ │ │ │ │ ├── DirtDeclineRight.asset.meta │ │ │ │ │ │ ├── DirtInclineLeft.asset │ │ │ │ │ │ ├── DirtInclineLeft.asset.meta │ │ │ │ │ │ ├── DirtInclineRight.asset │ │ │ │ │ │ ├── DirtInclineRight.asset.meta │ │ │ │ │ │ ├── DirtSideLeft.asset │ │ │ │ │ │ ├── DirtSideLeft.asset.meta │ │ │ │ │ │ ├── DirtSideRight.asset │ │ │ │ │ │ ├── DirtSideRight.asset.meta │ │ │ │ │ │ ├── DirtWhole.asset │ │ │ │ │ │ ├── DirtWhole.asset.meta │ │ │ │ │ │ ├── Environmental_Sprites.png │ │ │ │ │ │ ├── Environmental_Sprites.png.meta │ │ │ │ │ │ ├── Environmental_SpritesV2.png │ │ │ │ │ │ ├── Environmental_SpritesV2.png.meta │ │ │ │ │ │ ├── Environmental_SpritesV2_19.asset │ │ │ │ │ │ ├── Environmental_SpritesV2_19.asset.meta │ │ │ │ │ │ ├── Environmental_SpritesV2_20.asset │ │ │ │ │ │ ├── Environmental_SpritesV2_20.asset.meta │ │ │ │ │ │ ├── Environmental_SpritesV2_7.asset │ │ │ │ │ │ ├── Environmental_SpritesV2_7.asset.meta │ │ │ │ │ │ ├── Environmental_SpritesV2_9.asset │ │ │ │ │ │ ├── Environmental_SpritesV2_9.asset.meta │ │ │ │ │ │ ├── GrassSide.asset │ │ │ │ │ │ ├── GrassSide.asset.meta │ │ │ │ │ │ ├── GrassSideLeft.asset │ │ │ │ │ │ ├── GrassSideLeft.asset.meta │ │ │ │ │ │ ├── GrassSideRight.asset │ │ │ │ │ │ ├── GrassSideRight.asset.meta │ │ │ │ │ │ ├── GrassTop.asset │ │ │ │ │ │ ├── GrassTop.asset.meta │ │ │ │ │ │ ├── LeftWall.asset │ │ │ │ │ │ ├── LeftWall.asset.meta │ │ │ │ │ │ ├── TopLeft.asset │ │ │ │ │ │ ├── TopLeft.asset.meta │ │ │ │ │ │ ├── WallMid copy 21.asset │ │ │ │ │ │ ├── WallMid copy 21.asset.meta │ │ │ │ │ │ ├── WallMid.asset │ │ │ │ │ │ ├── WallMid.asset.meta │ │ │ │ │ │ ├── Window.asset │ │ │ │ │ │ └── Window.asset.meta │ │ │ │ │ ├── FarCavern.meta │ │ │ │ │ ├── FarCavern │ │ │ │ │ │ ├── FarCavern.jpg │ │ │ │ │ │ ├── FarCavern.jpg.meta │ │ │ │ │ │ ├── FarCavern_01.asset │ │ │ │ │ │ ├── FarCavern_01.asset.meta │ │ │ │ │ │ ├── FarCavern_02.asset │ │ │ │ │ │ ├── FarCavern_02.asset.meta │ │ │ │ │ │ ├── FarCavern_03.asset │ │ │ │ │ │ ├── FarCavern_03.asset.meta │ │ │ │ │ │ ├── FarCavern_04.asset │ │ │ │ │ │ ├── FarCavern_04.asset.meta │ │ │ │ │ │ ├── FarCavern_05.asset │ │ │ │ │ │ ├── FarCavern_05.asset.meta │ │ │ │ │ │ ├── FarCavern_06.asset │ │ │ │ │ │ ├── FarCavern_06.asset.meta │ │ │ │ │ │ ├── FarCavern_07.asset │ │ │ │ │ │ ├── FarCavern_07.asset.meta │ │ │ │ │ │ ├── FarCavern_08.asset │ │ │ │ │ │ ├── FarCavern_08.asset.meta │ │ │ │ │ │ ├── FarCavern_09.asset │ │ │ │ │ │ ├── FarCavern_09.asset.meta │ │ │ │ │ │ ├── FarCavern_10.asset │ │ │ │ │ │ ├── FarCavern_10.asset.meta │ │ │ │ │ │ ├── FarCavern_11.asset │ │ │ │ │ │ ├── FarCavern_11.asset.meta │ │ │ │ │ │ ├── FarCavern_12.asset │ │ │ │ │ │ ├── FarCavern_12.asset.meta │ │ │ │ │ │ ├── FarCavern_13.asset │ │ │ │ │ │ ├── FarCavern_13.asset.meta │ │ │ │ │ │ ├── FarCavern_14.asset │ │ │ │ │ │ ├── FarCavern_14.asset.meta │ │ │ │ │ │ ├── FarCavern_15.asset │ │ │ │ │ │ ├── FarCavern_15.asset.meta │ │ │ │ │ │ ├── FarCavern_16.asset │ │ │ │ │ │ └── FarCavern_16.asset.meta │ │ │ │ │ ├── ForegroundElements.meta │ │ │ │ │ ├── ForegroundElements │ │ │ │ │ │ ├── ForegroundElements_01.asset │ │ │ │ │ │ ├── ForegroundElements_01.asset.meta │ │ │ │ │ │ ├── ForegroundElements_02.asset │ │ │ │ │ │ ├── ForegroundElements_02.asset.meta │ │ │ │ │ │ ├── ForegroundElements_03.asset │ │ │ │ │ │ ├── ForegroundElements_03.asset.meta │ │ │ │ │ │ ├── ForegroundElements_04.asset │ │ │ │ │ │ ├── ForegroundElements_04.asset.meta │ │ │ │ │ │ ├── ForegroundElements_05.asset │ │ │ │ │ │ ├── ForegroundElements_05.asset.meta │ │ │ │ │ │ ├── ForegroundElements_06.asset │ │ │ │ │ │ ├── ForegroundElements_06.asset.meta │ │ │ │ │ │ ├── ForegroundElements_07.asset │ │ │ │ │ │ ├── ForegroundElements_07.asset.meta │ │ │ │ │ │ ├── ForegroundElements_08.asset │ │ │ │ │ │ ├── ForegroundElements_08.asset.meta │ │ │ │ │ │ ├── ForegroundElements_09.asset │ │ │ │ │ │ ├── ForegroundElements_09.asset.meta │ │ │ │ │ │ ├── ForegroundElements_10.asset │ │ │ │ │ │ ├── ForegroundElements_10.asset.meta │ │ │ │ │ │ ├── ForegroundElements_11.asset │ │ │ │ │ │ ├── ForegroundElements_11.asset.meta │ │ │ │ │ │ ├── ForegroundElements_12.asset │ │ │ │ │ │ ├── ForegroundElements_12.asset.meta │ │ │ │ │ │ ├── ForegroundElements_13.asset │ │ │ │ │ │ ├── ForegroundElements_13.asset.meta │ │ │ │ │ │ ├── ForegroundElements_15.asset │ │ │ │ │ │ ├── ForegroundElements_15.asset.meta │ │ │ │ │ │ ├── ForegroundElements_16.asset │ │ │ │ │ │ ├── ForegroundElements_16.asset.meta │ │ │ │ │ │ ├── Foreground_Elements.png │ │ │ │ │ │ └── Foreground_Elements.png.meta │ │ │ │ │ ├── GreyCavern2.meta │ │ │ │ │ ├── GreyCavern2 │ │ │ │ │ │ ├── GreyCavern2.png │ │ │ │ │ │ ├── GreyCavern2.png.meta │ │ │ │ │ │ ├── GreyCavern2_0.asset │ │ │ │ │ │ ├── GreyCavern2_0.asset.meta │ │ │ │ │ │ ├── GreyCavern2_1.asset │ │ │ │ │ │ ├── GreyCavern2_1.asset.meta │ │ │ │ │ │ ├── GreyCavern2_10.asset │ │ │ │ │ │ ├── GreyCavern2_10.asset.meta │ │ │ │ │ │ ├── GreyCavern2_11.asset │ │ │ │ │ │ ├── GreyCavern2_11.asset.meta │ │ │ │ │ │ ├── GreyCavern2_12.asset │ │ │ │ │ │ ├── GreyCavern2_12.asset.meta │ │ │ │ │ │ ├── GreyCavern2_13.asset │ │ │ │ │ │ ├── GreyCavern2_13.asset.meta │ │ │ │ │ │ ├── GreyCavern2_14.asset │ │ │ │ │ │ ├── GreyCavern2_14.asset.meta │ │ │ │ │ │ ├── GreyCavern2_15.asset │ │ │ │ │ │ ├── GreyCavern2_15.asset.meta │ │ │ │ │ │ ├── GreyCavern2_16.asset │ │ │ │ │ │ ├── GreyCavern2_16.asset.meta │ │ │ │ │ │ ├── GreyCavern2_17.asset │ │ │ │ │ │ ├── GreyCavern2_17.asset.meta │ │ │ │ │ │ ├── GreyCavern2_18.asset │ │ │ │ │ │ ├── GreyCavern2_18.asset.meta │ │ │ │ │ │ ├── GreyCavern2_19.asset │ │ │ │ │ │ ├── GreyCavern2_19.asset.meta │ │ │ │ │ │ ├── GreyCavern2_2.asset │ │ │ │ │ │ ├── GreyCavern2_2.asset.meta │ │ │ │ │ │ ├── GreyCavern2_20.asset │ │ │ │ │ │ ├── GreyCavern2_20.asset.meta │ │ │ │ │ │ ├── GreyCavern2_21.asset │ │ │ │ │ │ ├── GreyCavern2_21.asset.meta │ │ │ │ │ │ ├── GreyCavern2_22.asset │ │ │ │ │ │ ├── GreyCavern2_22.asset.meta │ │ │ │ │ │ ├── GreyCavern2_23.asset │ │ │ │ │ │ ├── GreyCavern2_23.asset.meta │ │ │ │ │ │ ├── GreyCavern2_24.asset │ │ │ │ │ │ ├── GreyCavern2_24.asset.meta │ │ │ │ │ │ ├── GreyCavern2_25.asset │ │ │ │ │ │ ├── GreyCavern2_25.asset.meta │ │ │ │ │ │ ├── GreyCavern2_26.asset │ │ │ │ │ │ ├── GreyCavern2_26.asset.meta │ │ │ │ │ │ ├── GreyCavern2_27.asset │ │ │ │ │ │ ├── GreyCavern2_27.asset.meta │ │ │ │ │ │ ├── GreyCavern2_28.asset │ │ │ │ │ │ ├── GreyCavern2_28.asset.meta │ │ │ │ │ │ ├── GreyCavern2_29.asset │ │ │ │ │ │ ├── GreyCavern2_29.asset.meta │ │ │ │ │ │ ├── GreyCavern2_3.asset │ │ │ │ │ │ ├── GreyCavern2_3.asset.meta │ │ │ │ │ │ ├── GreyCavern2_30.asset │ │ │ │ │ │ ├── GreyCavern2_30.asset.meta │ │ │ │ │ │ ├── GreyCavern2_31.asset │ │ │ │ │ │ ├── GreyCavern2_31.asset.meta │ │ │ │ │ │ ├── GreyCavern2_32.asset │ │ │ │ │ │ ├── GreyCavern2_32.asset.meta │ │ │ │ │ │ ├── GreyCavern2_33.asset │ │ │ │ │ │ ├── GreyCavern2_33.asset.meta │ │ │ │ │ │ ├── GreyCavern2_34.asset │ │ │ │ │ │ ├── GreyCavern2_34.asset.meta │ │ │ │ │ │ ├── GreyCavern2_35.asset │ │ │ │ │ │ ├── GreyCavern2_35.asset.meta │ │ │ │ │ │ ├── GreyCavern2_36.asset │ │ │ │ │ │ ├── GreyCavern2_36.asset.meta │ │ │ │ │ │ ├── GreyCavern2_37.asset │ │ │ │ │ │ ├── GreyCavern2_37.asset.meta │ │ │ │ │ │ ├── GreyCavern2_38.asset │ │ │ │ │ │ ├── GreyCavern2_38.asset.meta │ │ │ │ │ │ ├── GreyCavern2_39.asset │ │ │ │ │ │ ├── GreyCavern2_39.asset.meta │ │ │ │ │ │ ├── GreyCavern2_4.asset │ │ │ │ │ │ ├── GreyCavern2_4.asset.meta │ │ │ │ │ │ ├── GreyCavern2_40.asset │ │ │ │ │ │ ├── GreyCavern2_40.asset.meta │ │ │ │ │ │ ├── GreyCavern2_41.asset │ │ │ │ │ │ ├── GreyCavern2_41.asset.meta │ │ │ │ │ │ ├── GreyCavern2_42.asset │ │ │ │ │ │ ├── GreyCavern2_42.asset.meta │ │ │ │ │ │ ├── GreyCavern2_43.asset │ │ │ │ │ │ ├── GreyCavern2_43.asset.meta │ │ │ │ │ │ ├── GreyCavern2_44.asset │ │ │ │ │ │ ├── GreyCavern2_44.asset.meta │ │ │ │ │ │ ├── GreyCavern2_45.asset │ │ │ │ │ │ ├── GreyCavern2_45.asset.meta │ │ │ │ │ │ ├── GreyCavern2_46.asset │ │ │ │ │ │ ├── GreyCavern2_46.asset.meta │ │ │ │ │ │ ├── GreyCavern2_47.asset │ │ │ │ │ │ ├── GreyCavern2_47.asset.meta │ │ │ │ │ │ ├── GreyCavern2_48.asset │ │ │ │ │ │ ├── GreyCavern2_48.asset.meta │ │ │ │ │ │ ├── GreyCavern2_49.asset │ │ │ │ │ │ ├── GreyCavern2_49.asset.meta │ │ │ │ │ │ ├── GreyCavern2_5.asset │ │ │ │ │ │ ├── GreyCavern2_5.asset.meta │ │ │ │ │ │ ├── GreyCavern2_50.asset │ │ │ │ │ │ ├── GreyCavern2_50.asset.meta │ │ │ │ │ │ ├── GreyCavern2_51.asset │ │ │ │ │ │ ├── GreyCavern2_51.asset.meta │ │ │ │ │ │ ├── GreyCavern2_52.asset │ │ │ │ │ │ ├── GreyCavern2_52.asset.meta │ │ │ │ │ │ ├── GreyCavern2_53.asset │ │ │ │ │ │ ├── GreyCavern2_53.asset.meta │ │ │ │ │ │ ├── GreyCavern2_54.asset │ │ │ │ │ │ ├── GreyCavern2_54.asset.meta │ │ │ │ │ │ ├── GreyCavern2_55.asset │ │ │ │ │ │ ├── GreyCavern2_55.asset.meta │ │ │ │ │ │ ├── GreyCavern2_56.asset │ │ │ │ │ │ ├── GreyCavern2_56.asset.meta │ │ │ │ │ │ ├── GreyCavern2_57.asset │ │ │ │ │ │ ├── GreyCavern2_57.asset.meta │ │ │ │ │ │ ├── GreyCavern2_58.asset │ │ │ │ │ │ ├── GreyCavern2_58.asset.meta │ │ │ │ │ │ ├── GreyCavern2_6.asset │ │ │ │ │ │ ├── GreyCavern2_6.asset.meta │ │ │ │ │ │ ├── GreyCavern2_7.asset │ │ │ │ │ │ ├── GreyCavern2_7.asset.meta │ │ │ │ │ │ ├── GreyCavern2_8.asset │ │ │ │ │ │ ├── GreyCavern2_8.asset.meta │ │ │ │ │ │ ├── GreyCavern2_9.asset │ │ │ │ │ │ └── GreyCavern2_9.asset.meta │ │ │ │ │ ├── Lighting.meta │ │ │ │ │ ├── Lighting │ │ │ │ │ │ ├── Lighting.png │ │ │ │ │ │ ├── Lighting.png.meta │ │ │ │ │ │ ├── Lighting_0.asset │ │ │ │ │ │ ├── Lighting_0.asset.meta │ │ │ │ │ │ ├── Lighting_1.asset │ │ │ │ │ │ ├── Lighting_1.asset.meta │ │ │ │ │ │ ├── Lighting_2.asset │ │ │ │ │ │ ├── Lighting_2.asset.meta │ │ │ │ │ │ ├── Lighting_3.asset │ │ │ │ │ │ ├── Lighting_3.asset.meta │ │ │ │ │ │ ├── Lighting_4.asset │ │ │ │ │ │ ├── Lighting_4.asset.meta │ │ │ │ │ │ ├── Lighting_5.asset │ │ │ │ │ │ ├── Lighting_5.asset.meta │ │ │ │ │ │ ├── Lighting_6.asset │ │ │ │ │ │ ├── Lighting_6.asset.meta │ │ │ │ │ │ ├── Lighting_7.asset │ │ │ │ │ │ └── Lighting_7.asset.meta │ │ │ │ │ ├── Materials.meta │ │ │ │ │ ├── Materials │ │ │ │ │ │ ├── Shop_Keeper.mat │ │ │ │ │ │ ├── Shop_Keeper.mat.meta │ │ │ │ │ │ ├── TilemapShader.mat │ │ │ │ │ │ └── TilemapShader.mat.meta │ │ │ │ │ ├── MountainBackground.meta │ │ │ │ │ ├── MountainBackground │ │ │ │ │ │ ├── MountainBackground.png │ │ │ │ │ │ ├── MountainBackground.png.meta │ │ │ │ │ │ ├── MountainBackground_0.asset │ │ │ │ │ │ ├── MountainBackground_0.asset.meta │ │ │ │ │ │ ├── MountainBackground_1.asset │ │ │ │ │ │ ├── MountainBackground_1.asset.meta │ │ │ │ │ │ ├── MountainBackground_10.asset │ │ │ │ │ │ ├── MountainBackground_10.asset.meta │ │ │ │ │ │ ├── MountainBackground_11.asset │ │ │ │ │ │ ├── MountainBackground_11.asset.meta │ │ │ │ │ │ ├── MountainBackground_12.asset │ │ │ │ │ │ ├── MountainBackground_12.asset.meta │ │ │ │ │ │ ├── MountainBackground_15.asset │ │ │ │ │ │ ├── MountainBackground_15.asset.meta │ │ │ │ │ │ ├── MountainBackground_2.asset │ │ │ │ │ │ ├── MountainBackground_2.asset.meta │ │ │ │ │ │ ├── MountainBackground_4.asset │ │ │ │ │ │ ├── MountainBackground_4.asset.meta │ │ │ │ │ │ ├── MountainBackground_5.asset │ │ │ │ │ │ ├── MountainBackground_5.asset.meta │ │ │ │ │ │ ├── MountainBackground_6.asset │ │ │ │ │ │ ├── MountainBackground_6.asset.meta │ │ │ │ │ │ ├── MountainBackground_7.asset │ │ │ │ │ │ ├── MountainBackground_7.asset.meta │ │ │ │ │ │ ├── MountainBackground_8.asset │ │ │ │ │ │ ├── MountainBackground_8.asset.meta │ │ │ │ │ │ ├── MountainBackground_9.asset │ │ │ │ │ │ └── MountainBackground_9.asset.meta │ │ │ │ │ ├── Shop_Keeper.png │ │ │ │ │ ├── Shop_Keeper.png.meta │ │ │ │ │ ├── Spikes.meta │ │ │ │ │ ├── Spikes │ │ │ │ │ │ ├── Spikes.asset │ │ │ │ │ │ └── Spikes.asset.meta │ │ │ │ │ ├── Vegetation.meta │ │ │ │ │ └── Vegetation │ │ │ │ │ │ ├── Vegetation1.png │ │ │ │ │ │ ├── Vegetation1.png.meta │ │ │ │ │ │ ├── Vegetation1_01.asset │ │ │ │ │ │ ├── Vegetation1_01.asset.meta │ │ │ │ │ │ ├── Vegetation1_02.asset │ │ │ │ │ │ ├── Vegetation1_02.asset.meta │ │ │ │ │ │ ├── Vegetation1_04.asset │ │ │ │ │ │ ├── Vegetation1_04.asset.meta │ │ │ │ │ │ ├── Vegetation1_05.asset │ │ │ │ │ │ ├── Vegetation1_05.asset.meta │ │ │ │ │ │ ├── Vegetation1_06.asset │ │ │ │ │ │ ├── Vegetation1_06.asset.meta │ │ │ │ │ │ ├── Vegetation1_07.asset │ │ │ │ │ │ ├── Vegetation1_07.asset.meta │ │ │ │ │ │ ├── Vegetation1_08.asset │ │ │ │ │ │ ├── Vegetation1_08.asset.meta │ │ │ │ │ │ ├── Vegetation1_09.asset │ │ │ │ │ │ ├── Vegetation1_09.asset.meta │ │ │ │ │ │ ├── Vegetation1_10.asset │ │ │ │ │ │ ├── Vegetation1_10.asset.meta │ │ │ │ │ │ ├── Vegetation1_11.asset │ │ │ │ │ │ ├── Vegetation1_11.asset.meta │ │ │ │ │ │ ├── Vegetation1_12.asset │ │ │ │ │ │ ├── Vegetation1_12.asset.meta │ │ │ │ │ │ ├── Vegetation1_13.asset │ │ │ │ │ │ ├── Vegetation1_13.asset.meta │ │ │ │ │ │ ├── Vegetation1_14.asset │ │ │ │ │ │ ├── Vegetation1_14.asset.meta │ │ │ │ │ │ ├── Vegetation1_15.asset │ │ │ │ │ │ ├── Vegetation1_15.asset.meta │ │ │ │ │ │ ├── Vegetation1_16.asset │ │ │ │ │ │ └── Vegetation1_16.asset.meta │ │ │ │ ├── Palettes.meta │ │ │ │ └── Palettes │ │ │ │ │ ├── AnimatedTiles.prefab │ │ │ │ │ ├── AnimatedTiles.prefab.meta │ │ │ │ │ ├── BackgroundCavern.prefab │ │ │ │ │ ├── BackgroundCavern.prefab.meta │ │ │ │ │ ├── Environment.prefab │ │ │ │ │ ├── Environment.prefab.meta │ │ │ │ │ ├── Mountains.prefab │ │ │ │ │ ├── Mountains.prefab.meta │ │ │ │ │ ├── Spikes.prefab │ │ │ │ │ └── Spikes.prefab.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── HUD.meta │ │ │ │ ├── HUD │ │ │ │ ├── A_Button.png │ │ │ │ ├── A_Button.png.meta │ │ │ │ ├── B_Button.png │ │ │ │ ├── B_Button.png.meta │ │ │ │ ├── Life_Bar.png │ │ │ │ ├── Life_Bar.png.meta │ │ │ │ ├── Life_Unit.png │ │ │ │ ├── Life_Unit.png.meta │ │ │ │ ├── Thumb_Button.png │ │ │ │ └── Thumb_Button.png.meta │ │ │ │ ├── Main_Menu.meta │ │ │ │ ├── Main_Menu │ │ │ │ ├── BG.png │ │ │ │ ├── BG.png.meta │ │ │ │ ├── Menu_Button.png │ │ │ │ ├── Menu_Button.png.meta │ │ │ │ ├── Quit_Button.png │ │ │ │ ├── Quit_Button.png.meta │ │ │ │ ├── Start_Button.png │ │ │ │ ├── Start_Button.png.meta │ │ │ │ ├── Symbol.png │ │ │ │ ├── Symbol.png.meta │ │ │ │ ├── Title.png │ │ │ │ └── Title.png.meta │ │ │ │ ├── Merchant.meta │ │ │ │ └── Merchant │ │ │ │ ├── Box_01.png │ │ │ │ ├── Box_01.png.meta │ │ │ │ ├── Box_02.png │ │ │ │ ├── Box_02.png.meta │ │ │ │ ├── Box_Front.png │ │ │ │ ├── Box_Front.png.meta │ │ │ │ ├── Button.png │ │ │ │ ├── Button.png.meta │ │ │ │ ├── Materials.meta │ │ │ │ ├── Materials │ │ │ │ ├── shop_keeper.mat │ │ │ │ └── shop_keeper.mat.meta │ │ │ │ ├── Selection.png │ │ │ │ ├── Selection.png.meta │ │ │ │ ├── shop_keeper.jpg │ │ │ │ └── shop_keeper.jpg.meta │ │ ├── _Scenes.meta │ │ └── _Scenes │ │ │ ├── Game.unity │ │ │ ├── Game.unity.meta │ │ │ ├── Loose_Screen.unity │ │ │ ├── Loose_Screen.unity.meta │ │ │ ├── Main_Menu.unity │ │ │ ├── Main_Menu.unity.meta │ │ │ ├── Win_Screen.unity │ │ │ └── Win_Screen.unity.meta │ ├── Gizmos.meta │ ├── Gizmos │ │ ├── Cinemachine.meta │ │ └── Cinemachine │ │ │ ├── cm_logo_lg.png │ │ │ └── cm_logo_lg.png.meta │ ├── LevelManager.cs │ ├── LevelManager.cs.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Standard Assets.meta │ ├── Standard Assets │ │ ├── CrossPlatformInput.meta │ │ ├── CrossPlatformInput │ │ │ ├── CrossPlatformInputGuidelines.txt │ │ │ ├── CrossPlatformInputGuidelines.txt.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── CarTiltControls.prefab │ │ │ │ ├── CarTiltControls.prefab.meta │ │ │ │ ├── DualTouchControls.prefab │ │ │ │ ├── DualTouchControls.prefab.meta │ │ │ │ ├── MobileAircraftControls.prefab │ │ │ │ ├── MobileAircraftControls.prefab.meta │ │ │ │ ├── MobileSingleStickControl.prefab │ │ │ │ ├── MobileSingleStickControl.prefab.meta │ │ │ │ ├── MobileTiltControlRig.prefab │ │ │ │ └── MobileTiltControlRig.prefab.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── AxisTouchButton.cs │ │ │ │ ├── AxisTouchButton.cs.meta │ │ │ │ ├── ButtonHandler.cs │ │ │ │ ├── ButtonHandler.cs.meta │ │ │ │ ├── CrossPlatformInputManager.cs │ │ │ │ ├── CrossPlatformInputManager.cs.meta │ │ │ │ ├── InputAxisScrollbar.cs │ │ │ │ ├── InputAxisScrollbar.cs.meta │ │ │ │ ├── Joystick.cs │ │ │ │ ├── Joystick.cs.meta │ │ │ │ ├── MobileControlRig.cs │ │ │ │ ├── MobileControlRig.cs.meta │ │ │ │ ├── PlatformSpecific.meta │ │ │ │ ├── PlatformSpecific │ │ │ │ │ ├── MobileInput.cs │ │ │ │ │ ├── MobileInput.cs.meta │ │ │ │ │ ├── StandaloneInput.cs │ │ │ │ │ └── StandaloneInput.cs.meta │ │ │ │ ├── TiltInput.cs │ │ │ │ ├── TiltInput.cs.meta │ │ │ │ ├── TouchPad.cs │ │ │ │ ├── TouchPad.cs.meta │ │ │ │ ├── VirtualInput.cs │ │ │ │ └── VirtualInput.cs.meta │ │ │ ├── Sprites.meta │ │ │ └── Sprites │ │ │ │ ├── ButtonAcceleratorOverSprite.png │ │ │ │ ├── ButtonAcceleratorOverSprite.png.meta │ │ │ │ ├── ButtonAcceleratorUpSprite.png │ │ │ │ ├── ButtonAcceleratorUpSprite.png.meta │ │ │ │ ├── ButtonArrowOverSprite.png │ │ │ │ ├── ButtonArrowOverSprite.png.meta │ │ │ │ ├── ButtonArrowUpSprite.png │ │ │ │ ├── ButtonArrowUpSprite.png.meta │ │ │ │ ├── ButtonBrakeOverSprite.png │ │ │ │ ├── ButtonBrakeOverSprite.png.meta │ │ │ │ ├── ButtonBrakeUpSprite.png │ │ │ │ ├── ButtonBrakeUpSprite.png.meta │ │ │ │ ├── ButtonCameraCycleUpSprite.png │ │ │ │ ├── ButtonCameraCycleUpSprite.png.meta │ │ │ │ ├── ButtonResetSprite.png │ │ │ │ ├── ButtonResetSprite.png.meta │ │ │ │ ├── ButtonSpacebarSprite.png │ │ │ │ ├── ButtonSpacebarSprite.png.meta │ │ │ │ ├── ButtonThumbstickOverSprite.png │ │ │ │ ├── ButtonThumbstickOverSprite.png.meta │ │ │ │ ├── ButtonThumbstickUpSprite.png │ │ │ │ ├── ButtonThumbstickUpSprite.png.meta │ │ │ │ ├── ButtonTimescaleFullUpSprite.png │ │ │ │ ├── ButtonTimescaleFullUpSprite.png.meta │ │ │ │ ├── ButtonTimescaleSlowUpSprite.png │ │ │ │ ├── ButtonTimescaleSlowUpSprite.png.meta │ │ │ │ ├── SliderBackgroundSprite.png │ │ │ │ ├── SliderBackgroundSprite.png.meta │ │ │ │ ├── SliderHandleSprite.png │ │ │ │ ├── SliderHandleSprite.png.meta │ │ │ │ ├── TouchpadSprite.png │ │ │ │ └── TouchpadSprite.png.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── CrossPlatformInput.meta │ │ │ └── CrossPlatformInput │ │ │ │ ├── CrossPlatformInputInitialize.cs │ │ │ │ └── CrossPlatformInputInitialize.cs.meta │ │ ├── Fonts.meta │ │ └── Fonts │ │ │ ├── OpenSans.meta │ │ │ ├── OpenSans │ │ │ ├── License!.txt │ │ │ ├── License!.txt.meta │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBold.ttf.meta │ │ │ ├── OpenSansLight.ttf │ │ │ ├── OpenSansLight.ttf.meta │ │ │ ├── OpenSansRegular.ttf │ │ │ ├── OpenSansRegular.ttf.meta │ │ │ ├── OpenSansSemibold.ttf │ │ │ └── OpenSansSemibold.ttf.meta │ │ │ ├── Unipix.ttf │ │ │ └── Unipix.ttf.meta │ ├── TextMesh Pro.meta │ ├── TextMesh Pro │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Fonts & Materials.meta │ │ │ ├── Fonts & Materials │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ │ ├── LiberationSans SDF.asset │ │ │ │ └── LiberationSans SDF.asset.meta │ │ │ ├── LineBreaking Following Characters.txt │ │ │ ├── LineBreaking Following Characters.txt.meta │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ ├── LineBreaking Leading Characters.txt.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ │ │ ├── TMP_Bitmap.shader │ │ │ │ ├── TMP_Bitmap.shader.meta │ │ │ │ ├── TMP_SDF Overlay.shader │ │ │ │ ├── TMP_SDF Overlay.shader.meta │ │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ │ ├── TMP_SDF-Mobile.shader.meta │ │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ │ │ ├── TMP_SDF-Surface.shader │ │ │ │ ├── TMP_SDF-Surface.shader.meta │ │ │ │ ├── TMP_SDF.shader │ │ │ │ ├── TMP_SDF.shader.meta │ │ │ │ ├── TMP_Sprite.shader │ │ │ │ ├── TMP_Sprite.shader.meta │ │ │ │ ├── TMPro.cginc │ │ │ │ ├── TMPro.cginc.meta │ │ │ │ ├── TMPro_Properties.cginc │ │ │ │ ├── TMPro_Properties.cginc.meta │ │ │ │ ├── TMPro_Surface.cginc │ │ │ │ └── TMPro_Surface.cginc.meta │ │ │ ├── Sprite Assets.meta │ │ │ ├── Sprite Assets │ │ │ │ ├── EmojiOne.asset │ │ │ │ └── EmojiOne.asset.meta │ │ │ ├── Style Sheets.meta │ │ │ ├── Style Sheets │ │ │ │ ├── Default Style Sheet.asset │ │ │ │ └── Default Style Sheet.asset.meta │ │ │ ├── TMP Settings.asset │ │ │ └── TMP Settings.asset.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── EmojiOne Attribution.txt │ │ │ ├── EmojiOne Attribution.txt.meta │ │ │ ├── EmojiOne.json │ │ │ ├── EmojiOne.json.meta │ │ │ ├── EmojiOne.png │ │ │ └── EmojiOne.png.meta │ ├── Tilemap.meta │ ├── Tilemap │ │ ├── Brushes.meta │ │ ├── Brushes │ │ │ ├── Coordinate Brush.meta │ │ │ ├── Coordinate Brush │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── Editor.meta │ │ │ │ │ └── Editor │ │ │ │ │ ├── CoordinateBrush.cs │ │ │ │ │ └── CoordinateBrush.cs.meta │ │ │ ├── GameObject Brush.meta │ │ │ ├── GameObject Brush │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── Editor.meta │ │ │ │ │ └── Editor │ │ │ │ │ ├── GameObjectBrush.cs │ │ │ │ │ └── GameObjectBrush.cs.meta │ │ │ ├── Group Brush.meta │ │ │ ├── Group Brush │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── Editor.meta │ │ │ │ │ └── Editor │ │ │ │ │ ├── GroupBrush.cs │ │ │ │ │ └── GroupBrush.cs.meta │ │ │ ├── Line Brush.meta │ │ │ ├── Line Brush │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── Editor.meta │ │ │ │ │ └── Editor │ │ │ │ │ ├── LineBrush.cs │ │ │ │ │ └── LineBrush.cs.meta │ │ │ ├── Prefab Brush.meta │ │ │ ├── Prefab Brush │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── Editor.meta │ │ │ │ │ └── Editor │ │ │ │ │ ├── PrefabBrush.cs │ │ │ │ │ └── PrefabBrush.cs.meta │ │ │ ├── Random Brush.meta │ │ │ ├── Random Brush │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ │ ├── Editor.meta │ │ │ │ │ └── Editor │ │ │ │ │ ├── RandomBrush.cs │ │ │ │ │ └── RandomBrush.cs.meta │ │ │ ├── Tint Brush Smooth.meta │ │ │ ├── Tint Brush Smooth │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Scripts │ │ │ │ │ ├── Editor.meta │ │ │ │ │ ├── Editor │ │ │ │ │ │ ├── TintBrushSmooth.cs │ │ │ │ │ │ └── TintBrushSmooth.cs.meta │ │ │ │ │ ├── TintTextureGenerator.cs │ │ │ │ │ └── TintTextureGenerator.cs.meta │ │ │ │ ├── Shaders.meta │ │ │ │ └── Shaders │ │ │ │ │ ├── TintedTilemap.shader │ │ │ │ │ └── TintedTilemap.shader.meta │ │ │ ├── Tint Brush.meta │ │ │ └── Tint Brush │ │ │ │ ├── Scripts.meta │ │ │ │ └── Scripts │ │ │ │ ├── Editor.meta │ │ │ │ └── Editor │ │ │ │ ├── TintBrush.cs │ │ │ │ └── TintBrush.cs.meta │ │ ├── GridInformation.meta │ │ ├── GridInformation │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── GridInformation.cs │ │ │ │ └── GridInformation.cs.meta │ │ ├── Tiles.meta │ │ └── Tiles │ │ │ ├── Animated Tile.meta │ │ │ ├── Animated Tile │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── AnimatedTile.cs │ │ │ │ └── AnimatedTile.cs.meta │ │ │ ├── Hexagonal Rule Tile.meta │ │ │ ├── Hexagonal Rule Tile │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── HexagonalRuleTileEditor.cs │ │ │ │ └── HexagonalRuleTileEditor.cs.meta │ │ │ ├── HexagonalRuleTile.cs │ │ │ └── HexagonalRuleTile.cs.meta │ │ │ ├── Isometric Rule Tile.meta │ │ │ ├── Isometric Rule Tile │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── IsometricRuleTileEditor.cs │ │ │ │ └── IsometricRuleTileEditor.cs.meta │ │ │ ├── IsometricRuleTile.cs │ │ │ └── IsometricRuleTile.cs.meta │ │ │ ├── Pipeline Tile.meta │ │ │ ├── Pipeline Tile │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── PipelineTile.cs │ │ │ │ └── PipelineTile.cs.meta │ │ │ ├── Random Tile.meta │ │ │ ├── Random Tile │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── RandomTile.cs │ │ │ │ └── RandomTile.cs.meta │ │ │ ├── Rule Override Tile.meta │ │ │ ├── Rule Override Tile │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ ├── RuleOverrideTileEditor.cs │ │ │ │ └── RuleOverrideTileEditor.cs.meta │ │ │ │ ├── RuleOverrideTile.cs │ │ │ │ └── RuleOverrideTile.cs.meta │ │ │ ├── Rule Tile.meta │ │ │ ├── Rule Tile │ │ │ ├── ScriptTemplates.meta │ │ │ ├── ScriptTemplates │ │ │ │ ├── NewCustomRuleTile.cs.txt │ │ │ │ └── NewCustomRuleTile.cs.txt.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ ├── CustomRuleTileMenu.cs │ │ │ │ ├── CustomRuleTileMenu.cs.meta │ │ │ │ ├── RuleTileEditor.cs │ │ │ │ └── RuleTileEditor.cs.meta │ │ │ │ ├── RuleTile.cs │ │ │ │ └── RuleTile.cs.meta │ │ │ ├── Terrain Tile.meta │ │ │ ├── Terrain Tile │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ │ ├── TerrainTile.cs │ │ │ │ └── TerrainTile.cs.meta │ │ │ ├── Weighted Random Tile.meta │ │ │ └── Weighted Random Tile │ │ │ ├── WeightedRandomTile.cs │ │ │ └── WeightedRandomTile.cs.meta │ ├── WinCollider.cs │ └── WinCollider.cs.meta ├── Demo │ ├── dungeon_escape.gif │ └── dungeon_escape.jpg ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ └── VFXManager.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/.gitignore -------------------------------------------------------------------------------- /Dungeon Escape/.gradle/4.6/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dungeon Escape/.gradle/4.6/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/.gradle/4.6/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Dungeon Escape/.gradle/4.6/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/.gradle/4.6/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /Dungeon Escape/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /Dungeon Escape/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Thu Jan 17 03:09:25 BDT 2019 2 | gradle.version=4.6 3 | -------------------------------------------------------------------------------- /Dungeon Escape/.vs/Dungeon Escape/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dungeon Escape/.vs/Dungeon Escape/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/.vs/Dungeon Escape/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Dungeon Escape/.vs/Dungeon Escape/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/.vs/Dungeon Escape/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /Dungeon Escape/.vs/Dungeon Escape/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/.vs/Dungeon Escape/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/BG.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/BG.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/BG/Dragon War.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/BG/Dragon War.mp3 -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/BG/Dragon War.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/BG/Dragon War.mp3.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/BG/Rock Background Music - No Copyright.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/BG/Rock Background Music - No Copyright.mp3 -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/BG/Rock Background Music - No Copyright.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/BG/Rock Background Music - No Copyright.mp3.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Menu.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Menu.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Menu/Menu Select_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Menu/Menu Select_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Menu/Menu Select_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Menu/Menu Select_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Menu/Menu Switching_V1-01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Menu/Menu Switching_V1-01.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Menu/Menu Switching_V1-01.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Menu/Menu Switching_V1-01.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Attack.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Attack.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Attack/Spider Attack_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Attack/Spider Attack_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Attack/Spider Attack_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Attack/Spider Attack_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Death.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Death.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Death/Spider Death_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Death/Spider Death_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Death/Spider Death_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Death/Spider Death_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Footstep.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Footstep.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Footstep/Spider Footstep_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Footstep/Spider Footstep_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Footstep/Spider Footstep_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Footstep/Spider Footstep_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Idle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Idle.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Idle/Spider Idle_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Idle/Spider Idle_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Idle/Spider Idle_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/SPIDER/Spider Idle/Spider Idle_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_CoinPickup.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_CoinPickup.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_CoinPickup/Warrior Coin Pickup_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_CoinPickup/Warrior Coin Pickup_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Death Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Death Animation.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_FlamingSwordJump.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_FlamingSwordJump.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_HealthGain.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_HealthGain.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_HealthGain/Warrior Health_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_HealthGain/Warrior Health_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_HealthGain/Warrior Health_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_HealthGain/Warrior Health_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Hit Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Hit Animation.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Itemcollection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Itemcollection.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Jump.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Jump.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Jump/WarriorJump_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Jump/WarriorJump_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Jump/WarriorJump_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Jump/WarriorJump_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Jumpwithsword.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Jumpwithsword.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Squishycut.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Squishycut.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Squishycut/Warrior Squishy Cut_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_Squishycut/Warrior Squishy Cut_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_SwingingSword.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_SwingingSword.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_SwingingSwordflame.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/WARRIOR/Warrior_SwingingSwordflame.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_CoinPickup.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_CoinPickup.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_CoinPickup/Warrior_CoinPickup_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_CoinPickup/Warrior_CoinPickup_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_CoinPickup/Warrior_CoinPickup_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_CoinPickup/Warrior_CoinPickup_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Death Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Death Animation.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Death Animation/Warrior_Death Animation_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Death Animation/Warrior_Death Animation_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_FlamingSwordJump.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_FlamingSwordJump.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_HealthGain.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_HealthGain.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_HealthGain/Warrior_HealthGain_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_HealthGain/Warrior_HealthGain_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_HealthGain/Warrior_HealthGain_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_HealthGain/Warrior_HealthGain_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Hit Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Hit Animation.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Hit Animation/Warrior_Hit Animation_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Hit Animation/Warrior_Hit Animation_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Hit Animation/Warrior_Hit Animation_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Hit Animation/Warrior_Hit Animation_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Itemcollection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Itemcollection.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Itemcollection/Warrior_Itemcollection_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Itemcollection/Warrior_Itemcollection_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Jump.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Jump.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Jump/Warrior_Jump_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Jump/Warrior_Jump_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Jump/Warrior_Jump_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Jump/Warrior_Jump_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Jumpwithsword.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Jumpwithsword.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Jumpwithsword/Warrior_Jumpwithsword_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Jumpwithsword/Warrior_Jumpwithsword_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Jumpwithsword/Warrior_Jumpwithsword_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Jumpwithsword/Warrior_Jumpwithsword_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Run.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Run.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Run/Footsteps.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Run/Footsteps.mp3 -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Run/Footsteps.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Run/Footsteps.mp3.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Squishycut.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Squishycut.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Squishycut/Warrior_Squishycut_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Squishycut/Warrior_Squishycut_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_Squishycut/Warrior_Squishycut_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_Squishycut/Warrior_Squishycut_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_SwingingSword.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_SwingingSword.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_SwingingSword/Warrior_SwingingSword_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_SwingingSword/Warrior_SwingingSword_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_SwingingSword/Warrior_SwingingSword_V1.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_SwingingSword/Warrior_SwingingSword_V1.wav.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/Warrior_SwingingSwordflame.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/Warrior_SwingingSwordflame.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/moss giant.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/moss giant.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/moss giant/Moss Giant Attack.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/moss giant/Moss Giant Attack.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/moss giant/Moss Giant Attack/Moss Giant Attack_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/moss giant/Moss Giant Attack/Moss Giant Attack_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/moss giant/Moss Giant Death Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/moss giant/Moss Giant Death Animation.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/moss giant/Moss Giant Footstep.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/moss giant/Moss Giant Footstep.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/moss giant/Moss Giant Hit Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/moss giant/Moss Giant Hit Animation.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/skeleton.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/skeleton.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Axe Swoosh.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Axe Swoosh.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Bone Break.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Bone Break.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Bone Break/Skeleton Bone Break_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Bone Break/Skeleton Bone Break_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Death Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Death Animation.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Footstep.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Footstep.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Footstep/Skeleton Footstep_V1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Footstep/Skeleton Footstep_V1.wav -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Gentle Bone Clacking.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Audio/skeleton/Skeleton Gentle Bone Clacking.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Prefabs/Acid.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Prefabs/Acid.prefab -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Prefabs/Acid.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Prefabs/Acid.prefab.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Prefabs/Diamond.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Prefabs/Diamond.prefab -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Prefabs/Diamond.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Prefabs/Diamond.prefab.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/AdsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/AdsManager.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/AdsManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/AdsManager.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Attack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Attack.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Attack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Attack.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Diamond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Diamond.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Diamond.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Diamond.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy/AcidEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy/AcidEffect.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy/AcidEffect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy/AcidEffect.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy/Enemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy/Enemy.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy/Enemy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy/Enemy.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy/MossGiant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy/MossGiant.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy/MossGiant.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy/MossGiant.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy/Skeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy/Skeleton.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy/Skeleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy/Skeleton.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy/Spider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy/Spider.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy/Spider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy/Spider.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy/SpiderAnimationEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy/SpiderAnimationEvent.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Enemy/SpiderAnimationEvent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Enemy/SpiderAnimationEvent.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/GameManager.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/GameManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/GameManager.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/IDamagable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/IDamagable.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/IDamagable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/IDamagable.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/MainMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/MainMenu.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/MainMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/MainMenu.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Player.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Player.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Player/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Player/Player.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Player/Player.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Player/Player.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Player/PlayerAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Player/PlayerAnimation.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Player/PlayerAnimation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Player/PlayerAnimation.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Shop.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Shop.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Shop/Shop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Shop/Shop.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Shop/Shop.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Shop/Shop.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Spikes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Spikes.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/Spikes.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/Spikes.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/UI.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/UI/UIManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/UI/UIManager.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Scripts/UI/UIManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Scripts/UI/UIManager.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Attack.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Attack.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Attack.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Attack.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Death.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Death.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Death.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Death.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Hit.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Hit.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Hit.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Hit.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Idle.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Idle.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Idle.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Idle.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Sprite.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Sprite.controller -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Walk.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Walk.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Walk.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Animations/Walk.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Attack.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Attack.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Attack.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Death.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Death.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Death.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Hit.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Hit.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Hit.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Idle.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Idle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Idle.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Walk.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Walk.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Moss_Giant/Moss_Giant_Walk.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Attack.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Attack.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Attack.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Attack.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Death.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Death.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Death.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Death.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Hit.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Hit.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Hit.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Hit.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Idle.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Idle.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Idle.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Idle.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Jump.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Jump.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Jump.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Jump.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Run.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Run.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Run.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Run.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Sprite.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Sprite.controller -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Sprite.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Animations/Sprite.controller.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Death.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Death.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Death.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Fire_Swing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Fire_Swing.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Fire_Swing.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Fire_Swing.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Hit.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Hit.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Hit.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Idle.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Idle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Idle.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Jump.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Jump.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Jump.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Jump_Swing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Jump_Swing.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Jump_Swing.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Jump_Swing.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Jump_Swing_Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Jump_Swing_Fire.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Jump_Swing_Fire.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Jump_Swing_Fire.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Reg_Swing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Reg_Swing.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Reg_Swing.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Reg_Swing.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Warrior_Run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Warrior_Run.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Warrior_Run.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Warrior_Run.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Warrior_Walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Warrior_Walk.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Warrior_Walk.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Player/Warrior_Walk.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Attack.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Attack.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Attack.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Attack.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Death.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Death.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Death.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Death.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Hit.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Hit.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Hit.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Hit.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Idle.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Idle.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Idle.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Idle.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Sprite.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Sprite.controller -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Sprite.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Sprite.controller.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Walk.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Walk.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Walk.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Animations/Walk.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Attack.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Attack.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Attack.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Death.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Death.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Death.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Hit.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Hit.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Hit.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Idle.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Idle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Idle.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Walk.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Walk.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Skeleton/Skeleton_Walk.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Attack.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Attack.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Attack.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Attack.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Death.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Death.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Death.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Death.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Idle.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Idle.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Idle.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Idle.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Sprite.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Sprite.controller -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Sprite.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Sprite.controller.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Walk.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Walk.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Walk.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Animations/Walk.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Attack.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Attack.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Attack.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Death.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Death.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Death.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Idle.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Idle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Idle.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Walk.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Walk.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Characters/Spider/Spider_Walk.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Acid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Acid.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Acid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Acid.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Acid.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Acid.controller -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Acid.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Acid.controller.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Acid_Effect.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Acid_Effect.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Acid_Effect.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Acid_Effect.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Diamond.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Diamond.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Diamond.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Diamond.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Diamond.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Diamond.controller -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Diamond.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Diamond.controller.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Sword_Arc.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Sword_Arc.anim -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Sword_Arc.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Sword_Arc.anim.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Sword_Arc.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Sword_Arc.controller -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Sword_Arc.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Animations/Sword_Arc.controller.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Diamond.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Diamond.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Diamond.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Sword_One_Particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Sword_One_Particle.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Sword_One_Particle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Sword_One_Particle.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Sword_Three_Particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Sword_Three_Particle.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Sword_Three_Particle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Sword_Three_Particle.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Sword_Two_Particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Sword_Two_Particle.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/Sword_Two_Particle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/Sword_Two_Particle.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/bloodScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/bloodScreen.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Effects/bloodScreen.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Effects/bloodScreen.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Fonts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Fonts/CharlemagneStd-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Fonts/CharlemagneStd-Regular.otf -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Fonts/CharlemagneStd-Regular.otf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Fonts/CharlemagneStd-Regular.otf.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Items.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Items.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Items/Candle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Items/Candle.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Items/Candle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Items/Candle.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Items/Chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Items/Chest.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Items/Chest.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Items/Chest.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Items/Lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Items/Lamp.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Items/Lamp.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Items/Lamp.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Materials.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Materials/Floor.physicsMaterial2D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Materials/Floor.physicsMaterial2D -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Materials/Floor.physicsMaterial2D.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Materials/Floor.physicsMaterial2D.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/PlayStore.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/PlayStore.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/PlayStore/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/PlayStore/icon.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/PlayStore/icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/PlayStore/icon.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/PlayStore/img_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/PlayStore/img_1.jpg -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/PlayStore/img_1.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/PlayStore/img_1.jpg.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/PlayStore/img_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/PlayStore/img_2.jpg -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/PlayStore/img_2.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/PlayStore/img_2.jpg.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Diamond_Brush.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Diamond_Brush.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Diamond_Brush.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Diamond_Brush.asset.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Diamond_Brush_B.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Diamond_Brush_B.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Diamond_Brush_B.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Diamond_Brush_B.asset.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Animated_Tiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Animated_Tiles.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Animated_Tiles/Water.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Animated_Tiles/Water.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackCave.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackCave.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackCave/Black.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackCave/Black.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackCave/Black.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackCave/Black.asset.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackCave/BlackCavern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackCave/BlackCavern.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackCavern2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackCavern2.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackCavern3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackCavern3.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackOverlay.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/BlackOverlay.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_19.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_19.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_19.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_19.asset.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_20.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_20.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_20.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_20.asset.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_25.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_25.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_25.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_25.asset.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_26.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_26.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_35.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_35.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_36.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_36.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_38.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_38.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_39.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_39.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_40.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_40.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_41.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_41.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_42.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_42.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_44.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_44.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_45.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_45.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_47.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_47.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_48.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_48.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_49.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_49.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_50.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks/Bricks_50.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_15.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_15.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_16.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_16.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_17.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_17.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_23.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_23.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_26.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_26.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_3.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_3.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_32.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_32.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_33.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_33.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_34.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_34.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_37.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_37.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_39.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_39.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_46.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_46.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_47.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_47.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_49.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_49.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_52.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_52.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_54.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_54.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_62.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_62.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_9.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Bricks2/Bricks2_9.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/ColumnArches.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/ColumnArches.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Environment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Environment.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Environment/Window.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Environment/Window.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/FarCavern.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/FarCavern.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/FarCavern/FarCavern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/FarCavern/FarCavern.jpg -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/ForegroundElements.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/ForegroundElements.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/GreyCavern2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/GreyCavern2.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Lighting.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Lighting.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Lighting/Lighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Lighting/Lighting.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Materials.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/MountainBackground.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/MountainBackground.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Shop_Keeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Shop_Keeper.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Shop_Keeper.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Shop_Keeper.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Spikes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Spikes.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Spikes/Spikes.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Spikes/Spikes.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Spikes/Spikes.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Spikes/Spikes.asset.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Vegetation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Environmental_Tiles/Vegetation.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/AnimatedTiles.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/AnimatedTiles.prefab -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/AnimatedTiles.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/AnimatedTiles.prefab.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/BackgroundCavern.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/BackgroundCavern.prefab -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/BackgroundCavern.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/BackgroundCavern.prefab.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/Environment.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/Environment.prefab -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/Environment.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/Environment.prefab.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/Mountains.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/Mountains.prefab -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/Mountains.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/Mountains.prefab.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/Spikes.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/Spikes.prefab -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/Spikes.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/Tiles/Palettes/Spikes.prefab.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/HUD.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/HUD.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/HUD/A_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/HUD/A_Button.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/HUD/A_Button.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/HUD/A_Button.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/HUD/B_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/HUD/B_Button.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/HUD/B_Button.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/HUD/B_Button.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/HUD/Life_Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/HUD/Life_Bar.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/HUD/Life_Bar.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/HUD/Life_Bar.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/HUD/Life_Unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/HUD/Life_Unit.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/HUD/Life_Unit.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/HUD/Life_Unit.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/HUD/Thumb_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/HUD/Thumb_Button.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/HUD/Thumb_Button.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/HUD/Thumb_Button.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/BG.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/BG.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/BG.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Menu_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Menu_Button.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Menu_Button.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Menu_Button.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Quit_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Quit_Button.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Quit_Button.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Quit_Button.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Start_Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Start_Button.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Start_Button.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Start_Button.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Symbol.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Symbol.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Symbol.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Title.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Title.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Main_Menu/Title.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Box_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Box_01.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Box_01.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Box_01.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Box_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Box_02.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Box_02.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Box_02.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Box_Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Box_Front.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Box_Front.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Box_Front.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Button.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Button.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Button.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Materials.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Materials/shop_keeper.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Materials/shop_keeper.mat -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Materials/shop_keeper.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Materials/shop_keeper.mat.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Selection.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Selection.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/Selection.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/shop_keeper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/shop_keeper.jpg -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/shop_keeper.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/Sprites/UI/Merchant/shop_keeper.jpg.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/_Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/_Scenes.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/_Scenes/Game.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/_Scenes/Game.unity -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/_Scenes/Game.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/_Scenes/Game.unity.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/_Scenes/Loose_Screen.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/_Scenes/Loose_Screen.unity -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/_Scenes/Loose_Screen.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/_Scenes/Loose_Screen.unity.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/_Scenes/Main_Menu.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/_Scenes/Main_Menu.unity -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/_Scenes/Main_Menu.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/_Scenes/Main_Menu.unity.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/_Scenes/Win_Screen.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/_Scenes/Win_Screen.unity -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Assets/_Scenes/Win_Screen.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Assets/_Scenes/Win_Screen.unity.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Gizmos.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Gizmos.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Gizmos/Cinemachine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Gizmos/Cinemachine.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Gizmos/Cinemachine/cm_logo_lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Gizmos/Cinemachine/cm_logo_lg.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Gizmos/Cinemachine/cm_logo_lg.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Gizmos/Cinemachine/cm_logo_lg.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/LevelManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/LevelManager.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/LevelManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/LevelManager.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Scenes.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Prefabs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Prefabs/CarTiltControls.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Prefabs/CarTiltControls.prefab -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/AxisTouchButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/AxisTouchButton.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/ButtonHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/ButtonHandler.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/ButtonHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/ButtonHandler.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/InputAxisScrollbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/InputAxisScrollbar.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/Joystick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/Joystick.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/Joystick.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/Joystick.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/MobileControlRig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/MobileControlRig.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/PlatformSpecific.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/PlatformSpecific.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/TiltInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/TiltInput.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/TiltInput.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/TiltInput.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/TouchPad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/TouchPad.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/TouchPad.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/TouchPad.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/VirtualInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/VirtualInput.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/VirtualInput.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Scripts/VirtualInput.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Sprites.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Sprites/ButtonResetSprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Sprites/ButtonResetSprite.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Sprites/SliderHandleSprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Sprites/SliderHandleSprite.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Sprites/TouchpadSprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/CrossPlatformInput/Sprites/TouchpadSprite.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Editor/CrossPlatformInput.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Editor/CrossPlatformInput.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/License!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/License!.txt -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/License!.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/License!.txt.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansBold.ttf -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansBold.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansBold.ttf.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansLight.ttf -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansLight.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansLight.ttf.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansRegular.ttf -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansRegular.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansRegular.ttf.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansSemibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansSemibold.ttf -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansSemibold.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/OpenSans/OpenSansSemibold.ttf.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/Unipix.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/Unipix.ttf -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Standard Assets/Fonts/Unipix.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Standard Assets/Fonts/Unipix.ttf.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Fonts & Materials.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Custom-Atlas.shader -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap-Mobile.shader.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Bitmap.shader.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF Overlay.shader.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Masking.shader.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile Overlay.shader.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Mobile.shader.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface-Mobile.shader.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF-Surface.shader.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMP_Sprite.shader.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMPro_Properties.cginc.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Shaders/TMPro_Surface.cginc.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Sprite Assets.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Dungeon Escape/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Coordinate Brush.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Coordinate Brush.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Coordinate Brush/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Coordinate Brush/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Coordinate Brush/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Coordinate Brush/Scripts/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/GameObject Brush.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/GameObject Brush.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/GameObject Brush/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/GameObject Brush/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/GameObject Brush/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/GameObject Brush/Scripts/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Group Brush.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Group Brush.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Group Brush/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Group Brush/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Group Brush/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Group Brush/Scripts/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Group Brush/Scripts/Editor/GroupBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Group Brush/Scripts/Editor/GroupBrush.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Group Brush/Scripts/Editor/GroupBrush.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Group Brush/Scripts/Editor/GroupBrush.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Line Brush.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Line Brush.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Line Brush/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Line Brush/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Line Brush/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Line Brush/Scripts/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Line Brush/Scripts/Editor/LineBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Line Brush/Scripts/Editor/LineBrush.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Line Brush/Scripts/Editor/LineBrush.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Line Brush/Scripts/Editor/LineBrush.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Prefab Brush.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Prefab Brush.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Prefab Brush/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Prefab Brush/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Prefab Brush/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Prefab Brush/Scripts/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Prefab Brush/Scripts/Editor/PrefabBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Prefab Brush/Scripts/Editor/PrefabBrush.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Prefab Brush/Scripts/Editor/PrefabBrush.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Prefab Brush/Scripts/Editor/PrefabBrush.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Random Brush.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Random Brush.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Random Brush/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Random Brush/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Random Brush/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Random Brush/Scripts/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Random Brush/Scripts/Editor/RandomBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Random Brush/Scripts/Editor/RandomBrush.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Random Brush/Scripts/Editor/RandomBrush.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Random Brush/Scripts/Editor/RandomBrush.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush Smooth.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush Smooth.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush Smooth/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush Smooth/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush Smooth/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush Smooth/Scripts/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush Smooth/Scripts/TintTextureGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush Smooth/Scripts/TintTextureGenerator.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush Smooth/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush Smooth/Shaders.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush Smooth/Shaders/TintedTilemap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush Smooth/Shaders/TintedTilemap.shader -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush/Scripts/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush/Scripts/Editor/TintBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush/Scripts/Editor/TintBrush.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush/Scripts/Editor/TintBrush.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Brushes/Tint Brush/Scripts/Editor/TintBrush.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/GridInformation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/GridInformation.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/GridInformation/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/GridInformation/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/GridInformation/Scripts/GridInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/GridInformation/Scripts/GridInformation.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/GridInformation/Scripts/GridInformation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/GridInformation/Scripts/GridInformation.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Animated Tile.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Animated Tile.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Animated Tile/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Animated Tile/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Animated Tile/Scripts/AnimatedTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Animated Tile/Scripts/AnimatedTile.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Animated Tile/Scripts/AnimatedTile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Animated Tile/Scripts/AnimatedTile.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Hexagonal Rule Tile.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Hexagonal Rule Tile.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Hexagonal Rule Tile/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Hexagonal Rule Tile/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Hexagonal Rule Tile/HexagonalRuleTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Hexagonal Rule Tile/HexagonalRuleTile.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Hexagonal Rule Tile/HexagonalRuleTile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Hexagonal Rule Tile/HexagonalRuleTile.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Isometric Rule Tile.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Isometric Rule Tile.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Isometric Rule Tile/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Isometric Rule Tile/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Isometric Rule Tile/IsometricRuleTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Isometric Rule Tile/IsometricRuleTile.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Isometric Rule Tile/IsometricRuleTile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Isometric Rule Tile/IsometricRuleTile.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Pipeline Tile.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Pipeline Tile.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Pipeline Tile/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Pipeline Tile/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Pipeline Tile/Scripts/PipelineTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Pipeline Tile/Scripts/PipelineTile.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Pipeline Tile/Scripts/PipelineTile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Pipeline Tile/Scripts/PipelineTile.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Random Tile.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Random Tile.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Random Tile/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Random Tile/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Random Tile/Scripts/RandomTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Random Tile/Scripts/RandomTile.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Random Tile/Scripts/RandomTile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Random Tile/Scripts/RandomTile.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Override Tile.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Override Tile.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Override Tile/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Override Tile/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Override Tile/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Override Tile/Scripts/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Override Tile/Scripts/RuleOverrideTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Override Tile/Scripts/RuleOverrideTile.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Override Tile/Scripts/RuleOverrideTile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Override Tile/Scripts/RuleOverrideTile.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/ScriptTemplates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/ScriptTemplates.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/ScriptTemplates/NewCustomRuleTile.cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/ScriptTemplates/NewCustomRuleTile.cs.txt -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/Editor.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/Editor/CustomRuleTileMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/Editor/CustomRuleTileMenu.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/Editor/CustomRuleTileMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/Editor/CustomRuleTileMenu.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/Editor/RuleTileEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/Editor/RuleTileEditor.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/Editor/RuleTileEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/Editor/RuleTileEditor.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/RuleTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/RuleTile.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/RuleTile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Rule Tile/Scripts/RuleTile.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Terrain Tile.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Terrain Tile.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Terrain Tile/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Terrain Tile/Scripts.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Terrain Tile/Scripts/TerrainTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Terrain Tile/Scripts/TerrainTile.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Terrain Tile/Scripts/TerrainTile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Terrain Tile/Scripts/TerrainTile.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Weighted Random Tile.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Weighted Random Tile.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Weighted Random Tile/WeightedRandomTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Weighted Random Tile/WeightedRandomTile.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/Tilemap/Tiles/Weighted Random Tile/WeightedRandomTile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/Tilemap/Tiles/Weighted Random Tile/WeightedRandomTile.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Assets/WinCollider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/WinCollider.cs -------------------------------------------------------------------------------- /Dungeon Escape/Assets/WinCollider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Assets/WinCollider.cs.meta -------------------------------------------------------------------------------- /Dungeon Escape/Demo/dungeon_escape.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Demo/dungeon_escape.gif -------------------------------------------------------------------------------- /Dungeon Escape/Demo/dungeon_escape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Demo/dungeon_escape.jpg -------------------------------------------------------------------------------- /Dungeon Escape/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Dungeon Escape/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/Packages/manifest.json -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0f2 2 | -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Dungeon Escape/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/Dungeon Escape/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khaled-mahmud/Unity-Project-Dungeon-Escape/HEAD/README.md --------------------------------------------------------------------------------