1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-03 06:03:51 +00:00
tracy/server/TracyConfig.hpp
2023-05-01 14:40:31 +02:00

15 lines
141 B
C++

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