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.

18 lines
250 B

  1. package models
  2. type Resource struct {
  3. Value int64
  4. Max int64
  5. }
  6. type User struct {
  7. Id string
  8. Name string
  9. Email string
  10. Resources struct {
  11. Metal Resource
  12. Crystal Resource
  13. Deuterium Resource
  14. Energy Resource
  15. }
  16. }