LeviLamina
Loading...
Searching...
No Matches
EntitySystemProfiler.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace ECS::Profiling {
6
7class EntitySystemProfiler {
8public:
9 // member variables
10 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 EntitySystemProfiler& operator=(EntitySystemProfiler const&);
22 EntitySystemProfiler(EntitySystemProfiler const&);
23 EntitySystemProfiler();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28#ifdef LL_PLAT_C
29 MCNAPI void UninstallHooks();
30
31 MCNAPI ~EntitySystemProfiler();
32#endif
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38#ifdef LL_PLAT_C
39 MCNAPI void $dtor();
40#endif
41 // NOLINTEND
42};
43
44} // namespace ECS::Profiling
Definition Alias.h:14