rpcs3/rpcs3/Emu/perf_monitor.hpp
2022-03-16 19:42:06 +01:00

11 lines
166 B
C++

#pragma once
#include "util/types.hpp"
struct perf_monitor
{
void operator()();
~perf_monitor();
static constexpr auto thread_name = "Performance Sensor"sv;
};