tracy/server/TracyConfig.hpp
2023-05-01 19:09:27 +02:00

16 lines
165 B
C++

#ifndef __TRACYCONFIG_HPP__
#define __TRACYCONFIG_HPP__
namespace tracy
{
struct Config
{
bool threadedRendering = true;
int targetFps = 60;
};
}
#endif