mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 23:34:10 +02:00
13 lines
209 B
Beef
13 lines
209 B
Beef
using System.Threading;
|
|
|
|
namespace System.Threading
|
|
{
|
|
public enum ThreadPriority
|
|
{
|
|
Lowest = 0,
|
|
BelowNormal = 1,
|
|
Normal = 2,
|
|
AboveNormal = 3,
|
|
Highest = 4
|
|
}
|
|
}
|