GridPoint.cs 180 B

123456789
  1. namespace Day10;
  2. public record GridPoint(int X, int Y)
  3. {
  4. public GridPoint Add(GridPoint other)
  5. {
  6. return new GridPoint(X + other.X, Y + other.Y);
  7. }
  8. }