1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 15:46:05 +02:00
Beef/BeefLibs/corlib/src/Threading/ThreadPriority.bf

14 lines
209 B
Beef
Raw Normal View History

2019-08-23 11:56:54 -07:00
using System.Threading;
namespace System.Threading
{
public enum ThreadPriority
{
Lowest = 0,
BelowNormal = 1,
Normal = 2,
AboveNormal = 3,
Highest = 4
}
}