Table of Contents

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 TEvent

An object containing all the relevant information for the synchronous event.