13 lines
153 B
Go
Executable File
13 lines
153 B
Go
Executable File
package domain
|
|
|
|
type Screen struct {
|
|
}
|
|
|
|
type ScreenManager struct {
|
|
Context Context
|
|
}
|
|
|
|
func (sm ScreenManager) GetCurrent() Screen {
|
|
return Screen{}
|
|
}
|