mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
17 lines
213 B
C#
17 lines
213 B
C#
#if _SILVERLIGHT
|
|
|
|
using System.Threading;
|
|
|
|
namespace Amib.Threading
|
|
{
|
|
public enum ThreadPriority
|
|
{
|
|
Lowest,
|
|
BelowNormal,
|
|
Normal,
|
|
AboveNormal,
|
|
Highest,
|
|
}
|
|
}
|
|
#endif
|