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

// struct bundling the star and the galaxy index it comes from
type stargalaxy struct {
	star  Star2D
	index int64
}