initial commit

This commit is contained in:
2023-06-27 20:17:48 +02:00
commit f2b64d4d05
11 changed files with 232 additions and 0 deletions

13
domain/screen.go Normal file
View File

@@ -0,0 +1,13 @@
package domain
type Screen struct {
Controller ControllerInterface
}
type ScreenManager struct {
Context Context
}
func (sm ScreenManager) GetCurrent() Screen {
return Screen{}
}