true if the tile at column x row y is a valid position and is open
x
y
bool isOpen(int x, int y) { if (_tiles.isValid(Vec2(x, y))) { return get(x, y).isOpen; } else { return false; } }