mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-23 01:58:00 +02:00
Moving corlib files out of "System" directory into root
This commit is contained in:
parent
4cd58262e4
commit
7dbfd15292
179 changed files with 3 additions and 0 deletions
16
BeefLibs/corlib/src/Threading/ThreadState.bf
Normal file
16
BeefLibs/corlib/src/Threading/ThreadState.bf
Normal file
|
@ -0,0 +1,16 @@
|
|||
namespace System.Threading
|
||||
{
|
||||
public enum ThreadState
|
||||
{
|
||||
Running = 0,
|
||||
StopRequested = 1,
|
||||
SuspendRequested = 2,
|
||||
Background = 4,
|
||||
Unstarted = 8,
|
||||
Stopped = 16,
|
||||
WaitSleepJoin = 32,
|
||||
Suspended = 64,
|
||||
AbortRequested = 128,
|
||||
Aborted = 256
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue