mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
25 lines
326 B
C++
25 lines
326 B
C++
#ifndef __TRACYTIMELINECONTROLLER_HPP__
|
|
#define __TRACYTIMELINECONTROLLER_HPP__
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
class TimelineController
|
|
{
|
|
public:
|
|
TimelineController();
|
|
|
|
void End( float offset );
|
|
|
|
float GetHeight() const { return m_height; }
|
|
|
|
private:
|
|
float m_height;
|
|
float m_offset;
|
|
float m_scroll;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|