| 227 | } |
| 228 | |
| 229 | bool AlienImGui::InputOptionalInt(InputIntParameters const& parameters, std::optional<int>& optValue) |
| 230 | { |
| 231 | return optionalWidgetAdaptor(parameters, optValue, 0, &AlienImGui::InputInt); |
| 232 | } |
| 233 | |
| 234 | bool AlienImGui::InputFloat(InputFloatParameters const& parameters, float& value) |
| 235 | { |
nothing calls this directly
no test coverage detected