1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-03 06:20:43 +00:00
OpenDiablo2/d2game/d2player/input_callback_listener.go
David Carrell c6721432a6
412 missle animation (#470)
* 412 - move missle code to game_client and add animation, still buggy

* mostly working casting animation that cancels path

Co-authored-by: carrelda@Davids-MacBook-Pro.local <carrelda@Davids-MacBook-Pro.local>
2020-06-26 20:03:00 -04:00

7 lines
128 B
Go

package d2player
type InputCallbackListener interface {
OnPlayerMove(x, y float64)
OnPlayerCast(skillID int, x, y float64)
}