This commit is contained in:
Sveske Juice 2024-04-20 22:20:20 +02:00
parent 5f1bf2b735
commit 9ad8d6ee3e
1 changed files with 2 additions and 1 deletions

View File

@ -7,8 +7,9 @@ public class GameManager : MonoBehaviour
public static GameManager Instance;
public bool IsBuildMode = false;
public Tower SelectedTower;
private void Start()
private void Awake()
{
if (Instance != this)
Destroy(Instance);