Exemplo n.º 1
0
 public static bool IsNorthEastFrom(this BoardLocation source, BoardLocation target)
 {
     return((source.ToByte() > target.ToByte()) &&
            source.IsOnSameGradeAs(target));
 }