
Support events in the TorchAPI Static registry, non-static registration methods. Support unregister by assembly.
10 lines
232 B
C#
10 lines
232 B
C#
namespace Torch.API.Managers.Event
|
|
{
|
|
/// <summary>
|
|
/// Interface used to tag an event handler. This does <b>not</b> register it with the event manager.
|
|
/// </summary>
|
|
public interface IEventHandler
|
|
{
|
|
}
|
|
}
|