rpcsx/rpcs3/Emu/perf_monitor.hpp
2025-02-11 20:38:35 +01:00

13 lines
194 B
C++

#pragma once
#include <string_view>
using namespace std::literals;
struct perf_monitor
{
void operator()();
~perf_monitor();
static constexpr auto thread_name = "Performance Sensor"sv;
};