Files
gorpg/domain/domain.go
2023-07-04 22:32:13 +02:00

19 lines
259 B
Go

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