Files
gorpg/domain/domain.go
2023-07-07 15:18:51 +02:00

21 lines
265 B
Go

package domain
import (
"game/konstructor"
)
type Domain struct {
konstructor.DomainBaseFields
Context Context
}
func (d *Domain) Init() {
d.InitPlatformType()
d.InitItemType()
d.InitNPCType()
d.InitMenu()
d.InitDialog()
d.InitPlayer()
d.InitLevel()
}