From af81b075036ac7c581321f587a06576650dec331 Mon Sep 17 00:00:00 2001 From: hanemile Date: Sat, 12 Jan 2019 21:32:11 +0100 Subject: added json attributes to objects --- star.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'star.go') diff --git a/star.go b/star.go index 1486d5f..7450da5 100644 --- a/star.go +++ b/star.go @@ -2,9 +2,9 @@ package structs // Define a struct storing essential star information such as it's coordinate, velocity and mass type Star2D struct { - C Vec2 // coordinates of the star - V Vec2 // velocity of the star - M float64 // mass of the star + C Vec2 `json:C` // coordinates of the star + V Vec2 `json:V` // velocity of the star + M float64 `json:M` // mass of the star } func NewStar2D(c Vec2, v Vec2, m float64) Star2D { -- cgit 1.4.1