Files
advent-of-code-2024/10/HoofIt/Direction.cs
T

9 lines
271 B
C#

namespace HoofIt;
record Direction(int Xd, int Yd)
{
public static readonly Direction Up = new(0, -1);
public static readonly Direction Down = new(0, 1);
public static readonly Direction Left = new(-1, 0);
public static readonly Direction Right = new(1, 0);
}