remove inconsistent domain skeletons

This commit is contained in:
2023-07-04 13:38:56 +02:00
parent 61fb8af716
commit 7874fc022f
3 changed files with 0 additions and 43 deletions

View File

@@ -1,27 +0,0 @@
package domain
type LevelSection struct {
}
type Level struct {
LevelSections []LevelSection
}
type LevelManager struct {
}
func (lm LevelManager) Create(screens []LevelSection) Level {
return Level{
LevelSections: screens,
}
}
func (lm LevelManager) List() []Level {
return []Level{
lm.Create(LevelOne()),
}
}
func (lm LevelManager) Get() Level {
return Level{}
}