launcher/Kiseki.Launcher/Interfaces/IProtocol.cs

8 lines
225 B
C#

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