tracy/server/TracyViewData.hpp
2019-08-28 19:49:27 +02:00

20 lines
233 B
C++

#ifndef __TRACYVIEWDATA_HPP__
#define __TRACYVIEWDATA_HPP__
#include <stdint.h>
namespace tracy
{
struct ViewData
{
int64_t zvStart = 0;
int64_t zvEnd = 0;
int32_t zvHeight = 0;
int32_t zvScroll = 0;
};
}
#endif