tracy/public/common/TracyVersion.hpp

15 lines
170 B
C++
Raw Normal View History

#ifndef __TRACYVERSION_HPP__
#define __TRACYVERSION_HPP__
namespace tracy
{
namespace Version
{
enum { Major = 0 };
2024-07-16 16:38:15 +00:00
enum { Minor = 11 };
2024-08-03 18:23:26 +00:00
enum { Patch = 1 };
}
}
#endif