mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
12 lines
166 B
C++
12 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;
|
|
};
|