gofunge98/pkg/pointer/delta.go

10 lines
116 B
Go

package pointer
type Delta struct {
x int
y int
}
func NewDelta(x, y int) *Delta {
return &Delta{x: x, y: y}
}