Singularity/Assets/Plugins/ImaginationOverflow/UniversalDeepLinking/Scripts/LinkProviderFactory.cs

22 lines
526 B
C#
Raw Normal View History

2024-05-06 14:45:45 -04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ImaginationOverflow.UniversalDeepLinking.Providers;
namespace ImaginationOverflow.UniversalDeepLinking
{
public class LinkProviderFactory
{
/// <summary>
/// Used to register an external executable file.
/// </summary>
public static string DeferredExePath;
public ILinkProvider GetProvider(bool isSteamBuild)
{
return new DummyLinkProvider();
}
}
}