Added SteamFriends.RegisterProtocolInOverlayBrowser

This commit is contained in:
Garry Newman 2020-08-18 11:36:57 +01:00
parent 6d0cfa1ec8
commit 91d03c957f

View File

@ -350,5 +350,15 @@ public static async Task<SteamId[]> GetFollowingList()
return steamIds.ToArray();
}
}
/// <summary>
/// Call this before calling ActivateGameOverlayToWebPage() to have the Steam Overlay Browser block navigations
/// to your specified protocol (scheme) uris and instead dispatch a OverlayBrowserProtocolNavigation callback to your game.
/// </summary>
public static bool RegisterProtocolInOverlayBrowser( string protocol )
{
return Internal.RegisterProtocolInOverlayBrowser( protocol );
}
}
}