mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
357b557684
Drawing dies on the topology chart is a minimal effort for the time being. An improved version will be added later on.
15 lines
170 B
C++
15 lines
170 B
C++
#ifndef __TRACYVERSION_HPP__
|
|
#define __TRACYVERSION_HPP__
|
|
|
|
namespace tracy
|
|
{
|
|
namespace Version
|
|
{
|
|
enum { Major = 0 };
|
|
enum { Minor = 11 };
|
|
enum { Patch = 2 };
|
|
}
|
|
}
|
|
|
|
#endif
|