mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-04 17:27:16 -05:00
13 lines
217 B
Go
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
|
|
}
|