mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-17 15:46:05 +02:00
14 lines
209 B
Beef
14 lines
209 B
Beef
![]() |
using System.Threading;
|
||
|
|
||
|
namespace System.Threading
|
||
|
{
|
||
|
public enum ThreadPriority
|
||
|
{
|
||
|
Lowest = 0,
|
||
|
BelowNormal = 1,
|
||
|
Normal = 2,
|
||
|
AboveNormal = 3,
|
||
|
Highest = 4
|
||
|
}
|
||
|
}
|