private void Start() { // Get instances and start new turn audioManager = AudioManager.Instance; scoreblock = Scoreblock.Instance; menuManager = MenuManager.Instance; NewTurn(); }
private void Awake() { // Instance set up if (Instance == null) { Instance = this; } else { Destroy(gameObject); } }