about summary refs log tree commit diff
path: root/stargalaxy.go
blob: f6b5fef0d1d51de6ab3f2f2257044fcd0c349610 (plain)
1
2
3
4
5
6
7
package structs

// Stargalaxy is a struct bundling the star and the galaxy index it comes from
type Stargalaxy struct {
	Star  Star2D
	Index int64
}