Utils.cs 278 B

12345678910111213
  1. using System.Threading;
  2. namespace Mirror.SimpleWeb
  3. {
  4. internal static class Utils
  5. {
  6. public static void CheckForInterupt()
  7. {
  8. // sleep in order to check for ThreadInterruptedException
  9. Thread.Sleep(1);
  10. }
  11. }
  12. }