mirror of
https://github.com/mvvasilev/last_light.git
synced 2025-04-19 20:59:51 +03:00
22 lines
420 B
Go
22 lines
420 B
Go
package state
|
|
|
|
import (
|
|
"mvvasilev/last_light/engine"
|
|
|
|
"github.com/gdamore/tcell/v2"
|
|
)
|
|
|
|
type LookState struct {
|
|
}
|
|
|
|
func (ls *LookState) OnInput(e *tcell.EventKey) {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (ls *LookState) OnTick(dt int64) GameState {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|
|
|
|
func (ls *LookState) CollectDrawables() []engine.Drawable {
|
|
panic("not implemented") // TODO: Implement
|
|
}
|