Files
gorpg/domain/domain.go
2023-07-04 22:58:23 +02:00

19 lines
251 B
Go

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