1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00
Files
tracy/public/common/TracyVersion.hpp
T
Bartosz Taudul 37aff70dfa Release 0.10.0.
2023-10-16 20:59:38 +02:00

15 lines
170 B
C++

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