Files

15 lines
185 B
C++
Raw Permalink Normal View History

2026-07-18 14:31:15 +02:00
#ifndef __TRACYVERSION_HPP__
#define __TRACYVERSION_HPP__
namespace tracy
{
namespace Version
{
constexpr int Major = 0;
constexpr int Minor = 13;
constexpr int Patch = 3;
}
}
#endif