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

9 lines
235 B
C#
Raw Normal View History

2024-12-10 20:52:40 -06:00
namespace HoofIt;
record Direction(int XD, int YD)
{
public static Direction Up = new(0, -1);
public static Direction Down = new(0, 1);
public static Direction Left = new(-1, 0);
public static Direction Right = new(1, 0);
}