diff --git a/game/Assets/Scripts/Death & Respawn/RespawnManager.cs b/game/Assets/Scripts/Death & Respawn/RespawnManager.cs deleted file mode 100644 index eb15d82..0000000 --- a/game/Assets/Scripts/Death & Respawn/RespawnManager.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using UnityEngine; - -public class RespawnManager : MonoBehaviour -{ - private Vector3 respawnPoint; - - // Set respawn point in Respawn Manager. - public void SetRespawnPoint(Vector3 _respawnPoint) - { - respawnPoint = _respawnPoint; - } - - // Return the respawn point. - public Vector3 GetRespawnPoint() - { - return respawnPoint; - } - - // Show current respawn point in log. This can be deleted at later stage. - private void Update() - { - Debug.Log("Respawn point is: " + respawnPoint); - } -}