#pragma once // Renders a circular gauge/speedometer indicator using ImGui draw primitives. // Call within an ImGui frame. // color is interpolated green->yellow->red based on normalized value. void gauge(const char* label, float value, float min_val, float max_val, float radius = 60.0f);