1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-19 21:55:24 +00:00
OpenDiablo2/d2common/d2interface/input_manager.go

10 lines
290 B
Go
Raw Normal View History

package d2interface
// InputManager manages an InputService
type InputManager interface {
Advance(elapsedTime, currentTime float64) error
BindHandlerWithPriority(InputEventHandler, Priority) error
BindHandler(h InputEventHandler) error
UnbindHandler(handler InputEventHandler) error
}