launcher/Kiseki.Launcher/Interfaces/IProtocol.cs

9 lines
240 B
C#

namespace Kiseki.Launcher
{
// This is responsible for handling registration of the Kiseki protcool handler
public interface IProtocol
{
static abstract void Register();
static abstract void Unregister();
}
}