Exemplo n.º 1
0
 public static bool IsValidAndFree(Point position, Membrane[,] creatures)
 {
     return IsValid(position, creatures.GetLength(0), creatures.GetLength(1))
            && IsFree(position, creatures);
 }