예제 #1
0
 public Player(eDiskShape i_Shape, ePlayerType i_PlayerType)
 {
     m_Score       = 2;
     r_ShapeOfDisk = i_Shape;
     r_PlayerType  = i_PlayerType;
 }
예제 #2
0
 public Cell(int i_Row, int i_Col, eDiskShape i_Content = eDiskShape.Empty)
 {
     r_Row     = i_Row;
     r_Col     = i_Col;
     m_Content = i_Content;
 }