launcher/Kiseki.Launcher.Windows/ProtocolHandler.cs

15 lines
304 B
C#

namespace Kiseki.Launcher.Windows
{
public class ProtocolHandler : IProtocolHandler
{
public void Register()
{
throw new NotImplementedException();
}
public void Unregister()
{
throw new NotImplementedException();
}
}
}