public bool IsEqualTo(AxialCoordinates other) => other.Q == Q && other.R == R;
 public int DistanceTo(AxialCoordinates other) => Math.Abs(Q - other.Q) + Math.Abs(R - other.R);