mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
19 lines
329 B
C++
19 lines
329 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 );
|
|
|
|
}
|
|
|
|
#endif
|