initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Pulsar.Server.Plugins
|
||||
{
|
||||
public interface IServerPlugin
|
||||
{
|
||||
string Name { get; }
|
||||
Version Version { get; }
|
||||
string Description { get; }
|
||||
string Type { get; }
|
||||
void Initialize(IServerContext context);
|
||||
bool AutoLoadToClients => false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user