2
0
mirror of https://github.com/wolfpld/tracy synced 2026-01-19 04:52:09 +00:00
Files
tracy/public/common/TracyVersion.hpp
Bartosz Taudul 05cceee0df Release 0.13.1.
2025-12-11 23:46:02 +01:00

15 lines
170 B
C++

#ifndef __TRACYVERSION_HPP__
#define __TRACYVERSION_HPP__
namespace tracy
{
namespace Version
{
enum { Major = 0 };
enum { Minor = 13 };
enum { Patch = 1 };
}
}
#endif