Example #1
0
 public void SetSquare(ref SquareInfo rhs)
 {
     xCoord = rhs.xCoord;
     yCoord = rhs.yCoord;
     type   = rhs.type;
 }
Example #2
0
 public SquareInfo(ref SquareInfo data)
 {
     xCoord = data.xCoord;
     yCoord = data.yCoord;
     type   = data.type;
 }