Valkyrie 2026
Loading...
Searching...
No Matches
Profiler.h
1#pragma once
2
3namespace valor {
4
5namespace util {
6
7class Profiler {
8 public:
9 static inline bool IsEnabled() { return enabled; }
10
11 static inline void SetEnabled(bool enabled) { Profiler::enabled = enabled; }
12
13 private:
14 static bool enabled;
15};
16
17} // namespace util
18
19} // namespace valor
Definition Profiler.h:7