summaryrefslogtreecommitdiff
path: root/my_imgui_internal_widgets.h
blob: ec106b1d3d05e8a167e32164d2b0edd008ef3afe (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <climits>

#include <imgui.h>

// NOTE(fox): Appending to the standard ImGui namespace so I don't have to convert all the functions to ImGui::Function()
namespace ImGui {
    IMGUI_API bool SliderLevels(const char* label, void* p_data, void* p_min, void* p_max);
}