LeviLamina
Loading...
Searching...
No Matches
Mutex.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/threading/ZeroInit.h"
7
8namespace Bedrock::Threading {
9
10class Mutex : public ::Bedrock::Threading::ZeroInit, public ::std::mutex {
11public:
12 // member functions
13 // NOLINTBEGIN
14#ifdef LL_PLAT_C
15 MCAPI Mutex();
16#endif
17 // NOLINTEND
18
19public:
20 // constructor thunks
21 // NOLINTBEGIN
22#ifdef LL_PLAT_C
23 MCAPI void* $ctor();
24#endif
25 // NOLINTEND
26};
27
28} // namespace Bedrock::Threading
Definition Mutex.h:10
Definition ZeroInit.h:7