2024-12-07 01:28:15 -06:00
|
|
|
namespace GuardGallivant;
|
|
|
|
|
|
|
|
|
|
record Direction(char Value)
|
|
|
|
|
{
|
|
|
|
|
public static readonly Direction Up = new('^');
|
|
|
|
|
public static readonly Direction Down = new('v');
|
|
|
|
|
public static readonly Direction Left = new('<');
|
|
|
|
|
public static readonly Direction Right = new('>');
|
|
|
|
|
}
|