Mikemon/libs/tracy/profiler/src/ImGuiContext.hpp
2025-03-15 11:28:57 +01:00

17 lines
215 B
C++

#ifndef __IMGUICONTEXT_HPP__
#define __IMGUICONTEXT_HPP__
#include <string>
class ImGuiTracyContext
{
public:
ImGuiTracyContext();
~ImGuiTracyContext();
private:
std::string m_iniFilename;
};
#endif