Example #1
0
 public HexagonGroup(OffsetCoordinate a, OffsetCoordinate b, OffsetCoordinate c, GroupRotation rotation)
 {
     A        = a;
     B        = b;
     C        = c;
     Rotation = rotation;
 }
Example #2
0
 public bool Equals(OffsetCoordinate other)
 {
     return(Row == other.Row && Column == other.Column);
 }