39 lines
854 B
Go
39 lines
854 B
Go
package db
|
|
|
|
import "time"
|
|
|
|
type World struct {
|
|
ID string
|
|
|
|
Socket bool
|
|
Protected bool
|
|
Exclusive bool
|
|
PersistentStorage bool
|
|
Locked bool
|
|
Owned bool
|
|
HasStorage bool
|
|
Playtime int
|
|
Availability int
|
|
NextSession time.Time
|
|
Title string
|
|
Description string
|
|
Version string
|
|
System string
|
|
Background string
|
|
JoinTheme string
|
|
CoreVersion string
|
|
SystemVersion string
|
|
LastPlayed string
|
|
Tags []string
|
|
Scripts []string
|
|
Esmodules []string
|
|
Compatibility Compatibility
|
|
Relationships Relationships
|
|
Authors []Author
|
|
Media []Media
|
|
Styles []Style
|
|
Languages []Language
|
|
Packs []Pack
|
|
PackFolders []Folder
|
|
}
|