entity layer

This commit is contained in:
2023-07-04 22:58:23 +02:00
parent 93b2725c8a
commit e9c35f01ab
19 changed files with 364 additions and 353 deletions

View File

@@ -1,14 +1,14 @@
package domain
import (
"game/konstructor"
"game/konstructor/entity"
)
type Domain struct {
Context Context
MenuMap konstructor.MenuMap
DialogMap konstructor.DialogMap
Levels []konstructor.Level
MenuMap entity.MenuMap
DialogMap entity.DialogMap
Levels []entity.Level
}
func (d *Domain) Init() {