You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
444 B

  1. package models
  2. import "gopkg.in/mgo.v2/bson"
  3. /*
  4. BuildingsList
  5. MetalMine int64
  6. CrystalMine int64
  7. DeuteriumMine int64
  8. EnergyMine int64
  9. FusionReactor int64
  10. RoboticsFactory int64
  11. Shipyard int64
  12. RessearchLab int64
  13. */
  14. type Planet struct {
  15. Id bson.ObjectId `json:"id" bson:"_id,omitempty"`
  16. Size int64 // fields/slots
  17. Name string
  18. OwnerId bson.ObjectId
  19. Buildings map[string]int64
  20. }