launcher/Kiseki.Launcher/Interfaces/IProtocol.cs

8 lines
228 B
C#

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