Declaration
public Clue(
int x,
int y,
ValueTuple<int, Direction>? directionalClue,
bool? isInside
)
Summary
Represents a Castle Wall clue.
Parameters
int | x |
X-coordinate of the cell containing this clue. |
int | y |
Y-coordinate of the cell containing this clue. |
ValueTuple<int, Direction>? | directionalClue |
If not null , the clue specifies the number of straight segments parallel to the specified direction
that can be seen from the clue. |
bool? | isInside |
If not null , the cell containing this clue must be either inside or outside the loop. |