Interface IEventHandler<TEvent>
- Namespace
- MonkeyLoader.Events
- Assembly
- MonkeyLoader.dll
Defines the interface for synchronous event handlers.
public interface IEventHandler<in TEvent> : IPrioritizable where TEvent : SyncEvent
Type Parameters
TEvent
The type of synchronous events handled.
- Inherited Members
Methods
Handle(TEvent)
Handles the given synchronous event based on its data.
void Handle(TEvent eventData)
Parameters
eventData
TEventAn object containing all the relevant information for the synchronous event.