about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhanemile <hanemile@protonmail.com>2019-01-23 19:19:23 +0100
committerhanemile <hanemile@protonmail.com>2019-01-23 19:19:23 +0100
commitff8e4e2d572d772da480aaa6076884ba8c7773f2 (patch)
tree88e2313438bef88ca76c98f8b843bdbce144a277
parentd5deb0177a92ec8dc83695858abe86b361f0e83c (diff)
Exporting the stargalaxy struct
-rw-r--r--stargalaxy.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/stargalaxy.go b/stargalaxy.go
index c48f79f..931d203 100644
--- a/stargalaxy.go
+++ b/stargalaxy.go
@@ -1,7 +1,7 @@
 package structs
 
 // struct bundling the star and the galaxy index it comes from
-type stargalaxy struct {
+type Stargalaxy struct {
 	star  Star2D
 	index int64
 }