1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-11 02:10:43 +00:00
OpenDiablo2/d2core/d2input/keychars_event.go
2020-07-26 14:52:54 -04:00

13 lines
217 B
Go

package d2input
// KeyCharsEvent represents a key character event
type KeyCharsEvent struct {
HandlerEvent
chars []rune
}
// Chars returns the characters
func (e *KeyCharsEvent) Chars() []rune {
return e.chars
}