Interface GameEventDispatcher
- All Known Implementing Classes:
SimpleGameEventDispatcher
public interface GameEventDispatcher
A game event dispatcher dispatches game events to its listeners.
- Mappings:
Namespace Name official clvintermediary net/minecraft/class_5713named net/minecraft/world/event/listener/GameEventDispatcher
-
Field Summary
Fields Modifier and Type Field Description static GameEventDispatcherEMPTYAn unmodifiable, empty (non-operative) dispatcher. -
Method Summary
Modifier and Type Method Description voidaddListener(GameEventListener listener)Adds a listener to this dispatcher.voiddispatch(GameEvent event, Entity entity, BlockPos pos)Dispatches an event to all the listeners in this dispatcher.booleanisEmpty()Returns whether this dispatcher has no listeners.voidremoveListener(GameEventListener listener)Removes a listener from this dispatcher if it is present.
-
Field Details
-
EMPTY
An unmodifiable, empty (non-operative) dispatcher.- Mappings:
Namespace Name Mixin selector official aLclv;a:Lclv;intermediary field_28181Lnet/minecraft/class_5713;field_28181:Lnet/minecraft/class_5713;named EMPTYLnet/minecraft/world/event/listener/GameEventDispatcher;EMPTY:Lnet/minecraft/world/event/listener/GameEventDispatcher;
-
-
Method Details
-
isEmpty
boolean isEmpty()Returns whether this dispatcher has no listeners.- Mappings:
Namespace Name Mixin selector official aLclv;a()Zintermediary method_32942Lnet/minecraft/class_5713;method_32942()Znamed isEmptyLnet/minecraft/world/event/listener/GameEventDispatcher;isEmpty()Z
-
addListener
Adds a listener to this dispatcher.- Parameters:
listener- the listener to add- Mappings:
Namespace Name Mixin selector official aLclv;a(Lclw;)Vintermediary method_32944Lnet/minecraft/class_5713;method_32944(Lnet/minecraft/class_5714;)Vnamed addListenerLnet/minecraft/world/event/listener/GameEventDispatcher;addListener(Lnet/minecraft/world/event/listener/GameEventListener;)V
-
removeListener
Removes a listener from this dispatcher if it is present.- Parameters:
listener- the listener to remove- Mappings:
Namespace Name Mixin selector official bLclv;b(Lclw;)Vintermediary method_32945Lnet/minecraft/class_5713;method_32945(Lnet/minecraft/class_5714;)Vnamed removeListenerLnet/minecraft/world/event/listener/GameEventDispatcher;removeListener(Lnet/minecraft/world/event/listener/GameEventListener;)V
-
dispatch
Dispatches an event to all the listeners in this dispatcher.- Parameters:
event- the evententity- an entity related to the eventpos- the block position of the event- Mappings:
Namespace Name Mixin selector official aLclv;a(Lclu;Laqw;Lfx;)Vintermediary method_32943Lnet/minecraft/class_5713;method_32943(Lnet/minecraft/class_5712;Lnet/minecraft/class_1297;Lnet/minecraft/class_2338;)Vnamed dispatchLnet/minecraft/world/event/listener/GameEventDispatcher;dispatch(Lnet/minecraft/world/event/GameEvent;Lnet/minecraft/entity/Entity;Lnet/minecraft/util/math/BlockPos;)V
-