1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-01 13:13:53 +00:00
tracy/server/TracyVersion.hpp
2019-08-16 16:51:18 +02:00

15 lines
169 B
C++

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