remove inconsistent domain skeletons
This commit is contained in:
@@ -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{}
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
package domain
|
|
||||||
|
|
||||||
func LevelOne() []LevelSection {
|
|
||||||
return []LevelSection{}
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
package domain
|
|
||||||
|
|
||||||
import "game/konstructor"
|
|
||||||
|
|
||||||
type PlaygroundManager struct {
|
|
||||||
Context Context
|
|
||||||
}
|
|
||||||
|
|
||||||
func (pm PlaygroundManager) GetCurrent() konstructor.Playground {
|
|
||||||
return konstructor.Playground{}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user