mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
9 lines
No EOL
370 B
C++
9 lines
No EOL
370 B
C++
#pragma once
|
|
|
|
#include "imgui/imgui.h"
|
|
|
|
namespace widgets
|
|
{
|
|
bool SteppedSliderInt(const char* label, int* v, int v_min, int v_max, int v_rate = 1, const char* format = "%d", ImGuiSliderFlags flags = 0);
|
|
bool SteppedSliderFloat(const char* label, float* v, float v_min, float v_max, float v_rate = 1.0f, const char* format = "%.3f", ImGuiSliderFlags flags = 0);
|
|
} |