
Support events in the TorchAPI Static registry, non-static registration methods. Support unregister by assembly.
12 lines
314 B
C#
12 lines
314 B
C#
namespace Torch.API.Managers.Event
|
|
{
|
|
public interface IEvent
|
|
{
|
|
/// <summary>
|
|
/// An event that has been cancelled will no be processed in the default manner.
|
|
/// </summary>
|
|
/// <seealso cref="EventHandlerAttribute.SkipCancelled"/>
|
|
bool Cancelled { get; }
|
|
}
|
|
}
|