LeviLamina
Loading...
Searching...
No Matches
OSThreadPriority.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::Threading {
6
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<4, 4, int> mPriority;
12 // NOLINTEND
13
14public:
15 // static variables
16 // NOLINTBEGIN
17 MCAPI static ::Bedrock::Threading::OSThreadPriority const& Elevated();
18
19 MCAPI static ::Bedrock::Threading::OSThreadPriority const& High();
20
21 MCAPI static ::Bedrock::Threading::OSThreadPriority const& Low();
22
23 MCAPI static ::Bedrock::Threading::OSThreadPriority const& Normal();
24 // NOLINTEND
25};
26
27} // namespace Bedrock::Threading
Definition OSThreadPriority.h:7