2024-12-13 22:01:35 -06:00
|
|
|
namespace GardenGroups;
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|