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 };
2023-10-16 18:57:02 +00:00
enum { Patch = 0 };
}
}
#endif