vRp.CD2g_test/utils/geometry/path/path.go

15 lines
213 B
Go

package path
type Path struct {
points []*Landform
currentIndex int
}
func (slf *Path) GetPoints() []*Landform {
return slf.points
}
func (slf *Path) GetCurrentIndex() int {
return slf.currentIndex
}