Backlog/lib/tracy/tracy-0.10/server/TracyConfig.hpp

16 lines
165 B
C++

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