aboutsummaryrefslogtreecommitdiff
path: root/pkg/pointer/delta.go
blob: 0c3e07410e55533d32d224914538fe4fa26de901 (plain)
1
2
3
4
5
6
7
8
9
10
package pointer

type Delta struct {
	x int
	y int
}

func NewDelta(x, y int) *Delta {
	return &Delta{x: x, y: y}
}