about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--structs/structs.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/structs/structs.go b/structs/structs.go
index d33dc30..7b9bc3e 100644
--- a/structs/structs.go
+++ b/structs/structs.go
@@ -7,3 +7,9 @@ type Force struct {
 type Coord struct {
 	X, Y float64
 }
+
+type Star struct {
+	C    Coord
+	F    Force
+	Mass float64
+}