public interface GameEvent
Modifier and Type | Method and Description |
---|---|
java.lang.Object[] |
getKeys()
Get the keys that apply to the GameEvent, in order of priority.
|
java.lang.Object[] getKeys()
The keys should be returned with the highest priority (most specific) key at the front of the array. This will allow the more specific EventHandlers to receive the GameEvent first, and possible block the less specific EventHandlers from receiving the GameEvent.