mirror of
https://github.com/wolfpld/tracy.git
synced 2026-06-08 08:33:48 +00:00
15 lines
185 B
C++
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 = 3;
|
|
}
|
|
}
|
|
|
|
#endif
|