Skip to content

Instantly share code, notes, and snippets.

View ShimmyMySherbet's full-sized avatar
📚
Studying

ShimmyMySherbet

📚
Studying
View GitHub Profile
@ShimmyMySherbet
ShimmyMySherbet / RocketThreadHelper.cs
Created September 3, 2021 03:57
A thread helper for Unturned Rocketmod with support for async calling between game thread and thread pool
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>
@ShimmyMySherbet
ShimmyMySherbet / SteamProtocalHelper.cs
Created May 14, 2020 12:27
A Steam Protocol Helper for C#
namespace SteamProtocal
{
public static class SteamProtocalHelper
{
public static string Advertise(int GameID)
{
return $@"steam://advertise/{GameID}";
}