20 lines
247 B
Go
20 lines
247 B
Go
package domain
|
|
|
|
import (
|
|
"game/konstructor"
|
|
)
|
|
|
|
type Domain struct {
|
|
konstructor.DomainBaseFields
|
|
Context Context
|
|
}
|
|
|
|
func (d *Domain) Init() {
|
|
d.InitObjectType()
|
|
d.InitItemType()
|
|
d.InitNPCType()
|
|
d.InitMenu()
|
|
d.InitDialog()
|
|
d.InitLevel()
|
|
}
|