LeviLamina
Loading...
Searching...
No Matches
Thread.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace NetherNet {
6
7struct Thread : public ::std::thread {
8public:
9 // static functions
10 // NOLINTBEGIN
11 MCAPI static void SetThreadName(void* handle, char const* name);
12 // NOLINTEND
13};
14
15} // namespace NetherNet
Definition Thread.h:7