mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
22 lines
436 B
C++
22 lines
436 B
C++
#ifndef __TRACYMOUSE_HPP__
|
|
#define __TRACYMOUSE_HPP__
|
|
|
|
#include "../imgui/imgui.h"
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
void MouseFrame();
|
|
|
|
bool IsMouseDown( ImGuiMouseButton button );
|
|
bool IsMouseClicked( ImGuiMouseButton button );
|
|
bool IsMouseDragging( ImGuiMouseButton button );
|
|
ImVec2 GetMouseDragDelta( ImGuiMouseButton button );
|
|
|
|
void ConsumeMouseEvents( ImGuiMouseButton button );
|
|
bool IsMouseClickReleased( ImGuiMouseButton button );
|
|
|
|
}
|
|
|
|
#endif
|