12 lines
194 B
C#
12 lines
194 B
C#
namespace Decal.Adapter;
|
|
|
|
/// <summary>
|
|
/// Sorts of events to be fired by the PluginProxy
|
|
/// </summary>
|
|
internal enum ExtensionEvents
|
|
{
|
|
InternalWireup,
|
|
InternalUnwire,
|
|
Startup,
|
|
Shutdown
|
|
}
|