├── Enemy ├── DamageMultiplier.cs ├── DisableRagdoll.cs └── Zombie.cs ├── Gizmos ├── Barricade.cs ├── GameManager.cs ├── MysteryBox.cs ├── Perk.cs └── Teleport.cs ├── LICENSE ├── Player ├── ClientNetworkManager.cs ├── Player.cs ├── UI.cs ├── WeaponList.cs └── WeaponSway.cs └── README.md /Enemy/DamageMultiplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Enemy/DamageMultiplier.cs -------------------------------------------------------------------------------- /Enemy/DisableRagdoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Enemy/DisableRagdoll.cs -------------------------------------------------------------------------------- /Enemy/Zombie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Enemy/Zombie.cs -------------------------------------------------------------------------------- /Gizmos/Barricade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Gizmos/Barricade.cs -------------------------------------------------------------------------------- /Gizmos/GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Gizmos/GameManager.cs -------------------------------------------------------------------------------- /Gizmos/MysteryBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Gizmos/MysteryBox.cs -------------------------------------------------------------------------------- /Gizmos/Perk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Gizmos/Perk.cs -------------------------------------------------------------------------------- /Gizmos/Teleport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Gizmos/Teleport.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/LICENSE -------------------------------------------------------------------------------- /Player/ClientNetworkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Player/ClientNetworkManager.cs -------------------------------------------------------------------------------- /Player/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Player/Player.cs -------------------------------------------------------------------------------- /Player/UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Player/UI.cs -------------------------------------------------------------------------------- /Player/WeaponList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Player/WeaponList.cs -------------------------------------------------------------------------------- /Player/WeaponSway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/Player/WeaponSway.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rob-DEV/Unity3D-COD-Zombies-Remake-C-Sharp/HEAD/README.md --------------------------------------------------------------------------------