launcher/Kiseki.Launcher.Windows/Launcher.cs

20 lines
398 B
C#

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