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.

19 lines
268 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. Password string
  10. Email string
  11. Resources struct {
  12. Metal Resource
  13. Crystal Resource
  14. Deuterium Resource
  15. Energy Resource
  16. }
  17. }