tracy/server/TracyConfig.hpp

16 lines
165 B
C++
Raw Normal View History

2023-05-01 12:40:31 +00:00
#ifndef __TRACYCONFIG_HPP__
#define __TRACYCONFIG_HPP__
namespace tracy
{
struct Config
{
bool threadedRendering = true;
2023-05-01 17:07:49 +00:00
int targetFps = 60;
2023-05-01 12:40:31 +00:00
};
}
#endif