public User(string i_Name, bool i_IsHuman, int i_MaxKeyToRemebers) { m_IsHuman = i_IsHuman; if (i_IsHuman) { m_Name = i_Name; m_AI = null; } else { m_Name = "COMPUTER"; m_AI = new ComputerAI(i_MaxKeyToRemebers); } }
public void InitializedMemmory(Board i_Board) { this.OptionalChoices = new ComputerAI(i_Board); }