This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Rocket.Core.Utils; | |
using System; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace ShimmyMySherbet.Extensions | |
{ | |
/// <summary> | |
/// A collection of embedded tools to help manage threading and async operations | |
/// </summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace SteamProtocal | |
{ | |
public static class SteamProtocalHelper | |
{ | |
public static string Advertise(int GameID) | |
{ | |
return $@"steam://advertise/{GameID}"; | |
} |