initial commit
This commit is contained in:
26
domain/domain.go
Normal file
26
domain/domain.go
Normal file
@@ -0,0 +1,26 @@
|
||||
package domain
|
||||
|
||||
type ControllerInterface interface {
|
||||
}
|
||||
|
||||
type PresenterInterface interface {
|
||||
}
|
||||
|
||||
type Domain struct {
|
||||
Context Context
|
||||
Controller ControllerInterface
|
||||
Presenter PresenterInterface
|
||||
}
|
||||
|
||||
func (d Domain) Init() {
|
||||
menu_manager := MenuManager{}
|
||||
menu_manager.Init()
|
||||
// level_manager := LevelManager{}
|
||||
screen_manager := ScreenManager{}
|
||||
screen_manager.GetCurrent()
|
||||
|
||||
}
|
||||
|
||||
func (d Domain) Start() {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user