Space-Smash-Out/Assets/FishNet/Plugins/Bayou/SimpleWebTransport/Common/Utils.cs

14 lines
270 B
C#

using System.Threading;
namespace JamesFrowen.SimpleWeb
{
internal static class Utils
{
public static void CheckForInterupt()
{
// sleep in order to check for ThreadInterruptedException
Thread.Sleep(1);
}
}
}