Files
cpp-project-template/third_party/tracy/public/common/TracyVersion.hpp

15 lines
170 B
C++
Raw Normal View History

2025-08-25 15:24:22 +08:00
#ifndef __TRACYVERSION_HPP__
#define __TRACYVERSION_HPP__
namespace tracy
{
namespace Version
{
enum { Major = 0 };
enum { Minor = 12 };
enum { Patch = 2 };
}
}
#endif