2
0
mirror of https://github.com/wolfpld/tracy synced 2026-02-13 13:02:21 +00:00
Files
tracy/server/TracyVersion.hpp
Bartosz Taudul 31b6ff4bae Release 0.6.0.
2019-11-17 19:56:42 +01:00

15 lines
169 B
C++

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