mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
16 lines
165 B
C++
16 lines
165 B
C++
#ifndef __TRACYCONFIG_HPP__
|
|
#define __TRACYCONFIG_HPP__
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
struct Config
|
|
{
|
|
bool threadedRendering = true;
|
|
int targetFps = 60;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|