示例#1
0
 public Stone(Stone source)
 {
     X       = source.X;
     Y       = source.Y;
     IsBlack = source.IsBlack;
 }
示例#2
0
 public bool AtPlaceOf(Stone other)
 {
     return(X == other.X && Y == other.Y);
 }
示例#3
0
 public bool SameAs(Stone stone)
 {
     return(X == stone.X && Y == stone.Y && IsBlack == stone.IsBlack);
 }