Files
gorpg/domain/domain.go
2023-07-07 00:24:22 +02:00

20 lines
316 B
Go

package domain
import (
"game/konstructor"
)
type Domain struct {
Context Context
MenuMap konstructor.MenuMap
DialogMap konstructor.DialogMap
Levels []konstructor.Level
ObjectTypeMap konstructor.ObjectTypeMap
}
func (d *Domain) Init() {
d.InitMenu()
d.InitDialog()
d.InitLevel()
}