public void ChangeMode() { gameMode?.Deinit(this); gameMode = modetoChange; modetoChange?.Init(this); }
private void Start() { gameMode.Init(this); }