示例#1
0
 protected bool Equals(PlayerBoardSpec other)
 {
     return(_positions.SequenceEqual(other._positions) && BallIndex == other.BallIndex);
 }
示例#2
0
 public FullPlayerBoardSpec(Player player, PlayerBoardSpec spec) :
     this(player, spec.Positions, spec.BallIndex)
 {
 }