├── LICENSE ├── README.md └── Script ├── DamageableRock.cs ├── DamageableRock.cs.meta ├── DropPair.cs ├── DropPair.cs.meta ├── Enemies.meta ├── Enemies ├── SnakeAI.cs └── SnakeAI.cs.meta ├── Items.meta ├── Items ├── HeldItem.cs ├── HeldItem.cs.meta ├── Inventory.cs ├── Inventory.cs.meta ├── Item.cs ├── Item.cs.meta ├── ItemEntity.cs ├── ItemEntity.cs.meta ├── ItemPickaxe.cs ├── ItemPickaxe.cs.meta ├── ItemProjectile.cs ├── ItemProjectile.cs.meta ├── ItemStack.cs ├── ItemStack.cs.meta ├── ItemSword.cs ├── ItemSword.cs.meta ├── Slot.cs └── Slot.cs.meta ├── Lerp.cs ├── Lerp.cs.meta ├── NetworkHandler.cs ├── NetworkHandler.cs.meta ├── Platformer.cs ├── Platformer.cs.meta ├── PlayerStates.meta ├── PlayerStates ├── HangState.cs ├── HangState.cs.meta ├── MoveState.cs ├── MoveState.cs.meta ├── State.cs └── State.cs.meta ├── ThrownItem.cs ├── ThrownItem.cs.meta ├── TileEntities.meta └── TileEntities ├── Climable.cs └── Climable.cs.meta /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/README.md -------------------------------------------------------------------------------- /Script/DamageableRock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/DamageableRock.cs -------------------------------------------------------------------------------- /Script/DamageableRock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/DamageableRock.cs.meta -------------------------------------------------------------------------------- /Script/DropPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/DropPair.cs -------------------------------------------------------------------------------- /Script/DropPair.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/DropPair.cs.meta -------------------------------------------------------------------------------- /Script/Enemies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Enemies.meta -------------------------------------------------------------------------------- /Script/Enemies/SnakeAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Enemies/SnakeAI.cs -------------------------------------------------------------------------------- /Script/Enemies/SnakeAI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Enemies/SnakeAI.cs.meta -------------------------------------------------------------------------------- /Script/Items.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items.meta -------------------------------------------------------------------------------- /Script/Items/HeldItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/HeldItem.cs -------------------------------------------------------------------------------- /Script/Items/HeldItem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/HeldItem.cs.meta -------------------------------------------------------------------------------- /Script/Items/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/Inventory.cs -------------------------------------------------------------------------------- /Script/Items/Inventory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/Inventory.cs.meta -------------------------------------------------------------------------------- /Script/Items/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/Item.cs -------------------------------------------------------------------------------- /Script/Items/Item.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/Item.cs.meta -------------------------------------------------------------------------------- /Script/Items/ItemEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/ItemEntity.cs -------------------------------------------------------------------------------- /Script/Items/ItemEntity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/ItemEntity.cs.meta -------------------------------------------------------------------------------- /Script/Items/ItemPickaxe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/ItemPickaxe.cs -------------------------------------------------------------------------------- /Script/Items/ItemPickaxe.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/ItemPickaxe.cs.meta -------------------------------------------------------------------------------- /Script/Items/ItemProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/ItemProjectile.cs -------------------------------------------------------------------------------- /Script/Items/ItemProjectile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/ItemProjectile.cs.meta -------------------------------------------------------------------------------- /Script/Items/ItemStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/ItemStack.cs -------------------------------------------------------------------------------- /Script/Items/ItemStack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/ItemStack.cs.meta -------------------------------------------------------------------------------- /Script/Items/ItemSword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/ItemSword.cs -------------------------------------------------------------------------------- /Script/Items/ItemSword.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/ItemSword.cs.meta -------------------------------------------------------------------------------- /Script/Items/Slot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/Slot.cs -------------------------------------------------------------------------------- /Script/Items/Slot.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Items/Slot.cs.meta -------------------------------------------------------------------------------- /Script/Lerp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Lerp.cs -------------------------------------------------------------------------------- /Script/Lerp.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Lerp.cs.meta -------------------------------------------------------------------------------- /Script/NetworkHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/NetworkHandler.cs -------------------------------------------------------------------------------- /Script/NetworkHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/NetworkHandler.cs.meta -------------------------------------------------------------------------------- /Script/Platformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Platformer.cs -------------------------------------------------------------------------------- /Script/Platformer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/Platformer.cs.meta -------------------------------------------------------------------------------- /Script/PlayerStates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/PlayerStates.meta -------------------------------------------------------------------------------- /Script/PlayerStates/HangState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/PlayerStates/HangState.cs -------------------------------------------------------------------------------- /Script/PlayerStates/HangState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/PlayerStates/HangState.cs.meta -------------------------------------------------------------------------------- /Script/PlayerStates/MoveState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/PlayerStates/MoveState.cs -------------------------------------------------------------------------------- /Script/PlayerStates/MoveState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/PlayerStates/MoveState.cs.meta -------------------------------------------------------------------------------- /Script/PlayerStates/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/PlayerStates/State.cs -------------------------------------------------------------------------------- /Script/PlayerStates/State.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/PlayerStates/State.cs.meta -------------------------------------------------------------------------------- /Script/ThrownItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/ThrownItem.cs -------------------------------------------------------------------------------- /Script/ThrownItem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/ThrownItem.cs.meta -------------------------------------------------------------------------------- /Script/TileEntities.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/TileEntities.meta -------------------------------------------------------------------------------- /Script/TileEntities/Climable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/TileEntities/Climable.cs -------------------------------------------------------------------------------- /Script/TileEntities/Climable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhelanB/Spelunky-Like/HEAD/Script/TileEntities/Climable.cs.meta --------------------------------------------------------------------------------