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

13 lines
229 B
Beef

using System.Threading;
using System;
namespace System.Threading {
public static class Timeout
{
public const int32 Infinite = -1;
protected const uint32 UnsignedInfinite = (uint32)-1;
}
}