Loggest thy stuff
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.
 
 
 
 
 
 

21 lines
384 B

package models
type StatEntry struct {
ID string `json:"id"`
Name string `json:"name"`
Weight float64 `json:"weight"`
}
type StatProgressEntry struct {
StatEntry
Acquired int `json:"acquired"`
Required int `json:"required"`
}
type Stat struct {
StatEntry
Description string `json:"description"`
AllowedAmounts map[string]int `json:"allowedAmounts"`
}