コード例 #1
0
 /// <summary>
 /// Enables the controller associated with the given TurnType.
 /// </summary>
 public void EnableController(TurnType type)
 {
     if (type == TurnType.FIRST)
     {
         FirstController.Enable();
     }
     else
     {
         SecondController.Enable();
     }
 }