diff --git a/server/TracyConfig.hpp b/server/TracyConfig.hpp new file mode 100644 index 00000000..5a90d44a --- /dev/null +++ b/server/TracyConfig.hpp @@ -0,0 +1,14 @@ +#ifndef __TRACYCONFIG_HPP__ +#define __TRACYCONFIG_HPP__ + +namespace tracy +{ + +struct Config +{ + bool threadedRendering = true; +}; + +} + +#endif