1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-26 19:48:01 +02:00
Beef/BeefLibs/corlib/src/Threading/Timeout.bf

14 lines
228 B
Beef
Raw Normal View History

2019-08-23 11:56:54 -07:00
using System.Threading;
using System;
namespace System.Threading {
public static class Timeout
{
public const int32 Infinite = -1;
internal const uint32 UnsignedInfinite = (uint32)-1;
}
}