summaryrefslogtreecommitdiff
path: root/golang/pkg/model/ship.go
blob: 549f09e598b264c6fed28c24b1f7935444630012 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package model

type Ship struct {
	Cargo    Cargo    `json:"cargo"`
	Cooldown Cooldown `json:"cooldown"`
	//// crew
	//// engine
	//// frame
	Fuel Fuel `json:"fuel"`
	//// modules
	//// mounts
	Nav Nav `json:"nav"`
	//// reactor
	//registration: Registration;
	Symbol string `json:"symbol"`
}