Table of Contents

Delegate MyraEventHandler<T>

Namespace
Myra.Events
Assembly
Myra.dll

Represents the method that handles Myra events with specific event argument types.

public delegate void MyraEventHandler<T>(object sender, T e) where T : MyraEventArgs

Parameters

sender object

The source of the event.

e T

The event data.

Type Parameters

T

The type of event arguments.