12 lines
276 B
Go
12 lines
276 B
Go
package screens
|
|
|
|
type InventoryScreen struct {
|
|
|
|
}
|
|
|
|
func (ts *InventoryScreen) UseEcs() bool {return true}
|
|
func (ts *InventoryScreen) Enter() {}
|
|
func (ts *InventoryScreen) HandleInput(input string) {}
|
|
func (ts *InventoryScreen) Exit() {}
|
|
func (ts *InventoryScreen) Render() {}
|