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