diff options
-rw-r--r-- | stargalaxy.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/stargalaxy.go b/stargalaxy.go new file mode 100644 index 0000000..c48f79f --- /dev/null +++ b/stargalaxy.go @@ -0,0 +1,7 @@ +package structs + +// struct bundling the star and the galaxy index it comes from +type stargalaxy struct { + star Star2D + index int64 +} |