예제 #1
0
 public void ActivateMyTurn()
 {
     isMyTurn = true;
     EndTurnManaChanges();
     CanControl = true;
     // Reset cards attack limit
     foreach (CreatureLogic cl in table.CreaturesOnTable)
     {
         cl.OnTurnStart();
     }
     // Check if this player is an AI, if so fire the correct function
     if (isAI)
     {
         aiLogic.AITurn(); // It's their turn
     }
 }