mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-10 14:50:46 +00:00
13 lines
134 B
Go
13 lines
134 B
Go
package pad
|
|
|
|
type move struct {
|
|
x, y int
|
|
}
|
|
|
|
func newMove(x1, x2, y1, y2 int) *move {
|
|
return &move{
|
|
x: x2 - x1,
|
|
y: y2 - y1,
|
|
}
|
|
}
|