AuriRex / GTFO_TheArchive

GTFO Quality of Life mod for almost* any version of the game
MIT License
29 stars 10 forks source link

Open steam related URLs in steam overlay if available #53

Closed KcHNST closed 11 months ago

KcHNST commented 12 months ago

Not everyone is logged into steam on their browser, so for instance when viewing someones profile it would be preferable to have it open in the steam overlay where you are always logged in.

Sample code:

if (SteamUtils.IsOverlayEnabled())
{
    SteamFriends.ActivateGameOverlayToWebPage(url);
}
else
{
    // Open in external browser
}