// Widgets: Drags (tip: ctrl+click on a drag box to input text)
// ImGui 1.38+ work-in-progress, may change name or API.
IMGUI_APIboolDragFloat(constchar*label,float*v,floatv_step=1.0f,floatv_min=0.0f,floatv_max=0.0f,constchar*display_format="%.3f");// If v_max >= v_max we have no bound
IMGUI_APIboolDragInt(constchar*label,int*v,intv_step=1,intv_min=0.0f,intv_max=0.0f,constchar*display_format="%.0f");// If v_max >= v_max we have no bound
IMGUI_APIboolDragInt(constchar*label,int*v,intv_step=1,intv_min=0,intv_max=0,constchar*display_format="%.0f");// If v_max >= v_max we have no bound