tracy/public/common/TracyVersion.hpp

15 lines
169 B
C++
Raw Normal View History

#ifndef __TRACYVERSION_HPP__
#define __TRACYVERSION_HPP__
namespace tracy
{
namespace Version
{
enum { Major = 0 };
2022-10-26 20:45:15 +00:00
enum { Minor = 9 };
enum { Patch = 0 };
}
}
#endif