Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Constructor: Clue(int, int, ValueTuple<int, Direction>?, bool?)

Declaration

public Clue(
    int x,
    int y,
    ValueTuple<int, Direction>? directionalClue,
    bool? isInside
)

Summary

Represents a Castle Wall clue.

Parameters

intx X-coordinate of the cell containing this clue.
inty 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.