Exemplo n.º 1
0
 public static bool IsSouthFrom(this BoardLocation source, BoardLocation target)
 {
     return((source.ToByte() < target.ToByte()) &&
            source.IsOnSameColumnAs(target));
 }