✨ Add ic-merge command
Still needs some work, like saving to a new file, but works well so far.
This commit is contained in:
parent
7aae44048a
commit
8a3da4c5fe
8 changed files with 499 additions and 0 deletions
10
infinitecraft/game.go
Normal file
10
infinitecraft/game.go
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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:"-"`
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue