First commit

This commit is contained in:
EnderIce2
2020-10-25 16:19:43 +02:00
parent 9d78d84acb
commit b91db81473
73 changed files with 7634 additions and 0 deletions

View File

@ -0,0 +1,14 @@
using DiscordRPC.Logging;
namespace DiscordRPC.Registry
{
internal interface IUriSchemeCreator
{
/// <summary>
/// Registers the URI scheme. If Steam ID is passed, the application will be launched through steam instead of directly.
/// <para>Additional arguments can be supplied if required.</para>
/// </summary>
/// <param name="register">The register context.</param>
bool RegisterUriScheme(UriSchemeRegister register);
}
}