utils/infinitecraft/game.go
Dan Jones 8a3da4c5fe Add ic-merge command
Still needs some work, like saving to a new file, but works well so far.
2025-05-02 11:33:23 -05:00

10 lines
265 B
Go

package infinitecraft
type Game struct {
Name string `json:"name"`
Version string `json:"version"`
Created uint64 `json:"created"`
Updated uint64 `json:"updated"`
Instances []any `json:"instances" db:"-"`
Items []Item `json:"items" db:"-"`
}