mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-24 23:31:05 +00:00
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 = 10 };
|
|
enum { Patch = 0 };
|
|
}
|
|
}
|
|
|
|
#endif
|