예제 #1
0
 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);
     }
 }
예제 #2
0
 public void InitializedMemmory(Board i_Board)
 {
     this.OptionalChoices = new ComputerAI(i_Board);
 }