Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Nested struct: PuzzleSolvers.CastleWall.Clue

Summary

Represents a Castle Wall clue.

Constructors

Clue(int x, int y, ValueTuple<int, Direction>? directionalClue, bool? isInside)
Represents a Castle Wall clue.
Clue(int x, int y)
Constructor.
Clue(int x, int y, int number, Direction direction)
Clue(int x, int y, bool isInside)
Clue(int x, int y, int number, Direction direction, bool isInside)

Instance properties

ValueTuple<int, Direction>? If not null, the clue specifies the number of straight segments parallel to the specified direction that can be seen from the clue.
bool?If not null, the cell containing this clue must be either inside or outside the loop.
intX-coordinate of the cell containing this clue.
intY-coordinate of the cell containing this clue.