about summary refs log tree commit diff
path: root/structs/structs.go
diff options
context:
space:
mode:
authoremile <hanemile@protonmail.com>2018-10-08 15:22:47 +0200
committeremile <hanemile@protonmail.com>2018-10-08 15:22:47 +0200
commit5afbd653c40f2178b7aa1b257c4b95e0a1c3459c (patch)
tree624e80e69cd8dfac146064cd1ec65e483f033231 /structs/structs.go
parent6022c9b83a12ae567126bc7476faccd044b34483 (diff)
Coord struct used for storing star coordinates
Diffstat (limited to 'structs/structs.go')
-rw-r--r--structs/structs.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/structs/structs.go b/structs/structs.go
index da3421a..d33dc30 100644
--- a/structs/structs.go
+++ b/structs/structs.go
@@ -3,3 +3,7 @@ package structs
 type Force struct {
 	X, Y float64
 }
+
+type Coord struct {
+	X, Y float64
+}