initial commit
This commit is contained in:
13
domain/screen.go
Normal file
13
domain/screen.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package domain
|
||||
|
||||
type Screen struct {
|
||||
Controller ControllerInterface
|
||||
}
|
||||
|
||||
type ScreenManager struct {
|
||||
Context Context
|
||||
}
|
||||
|
||||
func (sm ScreenManager) GetCurrent() Screen {
|
||||
return Screen{}
|
||||
}
|
||||
Reference in New Issue
Block a user