move menu and playground to konstructor

This commit is contained in:
2023-07-01 02:54:03 +02:00
parent 884df7c406
commit 4750437aff
7 changed files with 88 additions and 72 deletions

View File

@@ -1,12 +1,11 @@
package domain
type Screen struct {
}
import "game/konstructor"
type ScreenManager struct {
type PlaygroundManager struct {
Context Context
}
func (sm ScreenManager) GetCurrent() Screen {
return Screen{}
func (pm PlaygroundManager) GetCurrent() konstructor.Playground {
return konstructor.Playground{}
}