Files
tracy/public/common/TracyVersion.hpp
Bartosz Taudul 73694c7a24 Cleanup enums.
2026-01-24 01:50:11 +01:00

15 lines
185 B
C++

#ifndef __TRACYVERSION_HPP__
#define __TRACYVERSION_HPP__
namespace tracy
{
namespace Version
{
constexpr int Major = 0;
constexpr int Minor = 13;
constexpr int Patch = 2;
}
}
#endif