void BattleStarts() { FindThis = GameObject.FindGameObjectWithTag("InBattle"); Enemy = FindThis.GetComponent(typeof(AI_Scripts)) as AI_Scripts; Enemy.OnDeath += onEnemyDeath; BattleStart = true; PlayerTurn = true; Player.SetMyTurn(true); }