1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 23:34:10 +02:00
Beef/BeefLibs/corlib/src/Threading/ThreadPriority.bf

13 lines
209 B
Beef

using System.Threading;
namespace System.Threading
{
public enum ThreadPriority
{
Lowest = 0,
BelowNormal = 1,
Normal = 2,
AboveNormal = 3,
Highest = 4
}
}