using System; using System.Collections.Generic; using System.Linq; using System.Text; using ImaginationOverflow.UniversalDeepLinking.Providers; namespace ImaginationOverflow.UniversalDeepLinking { public class LinkProviderFactory { /// /// Used to register an external executable file. /// public static string DeferredExePath; public ILinkProvider GetProvider(bool isSteamBuild) { return new DummyLinkProvider(); } } }