Example #1
0
 public CheckerPiece(int row, int col, int color, CheckerPieceStatus status = CheckerPieceStatus.Alive)
 {
     Row    = row;
     Col    = col;
     Color  = color;
     Status = status;
 }
Example #2
0
 public CheckerPiece(int row, int col, int color, CheckerPieceStatus status = CheckerPieceStatus.Alive)
 {
     Row = row;
     Col = col;
     Color = color;
     Status = status;
 }
Example #3
0
 public void Kill(DateTime currentTime)
 {
     Status   = CheckerPieceStatus.Dying;
     TimeDead = currentTime;
 }
Example #4
0
 public void Kill(DateTime currentTime)
 {
     Status = CheckerPieceStatus.Dying;
     TimeDead = currentTime;
 }