| 646 | |
| 647 | |
| 648 | lua::ImguiHandle TreeParent::AddCombo(char const* label) |
| 649 | { |
| 650 | auto e = AddChild<Combo>(); |
| 651 | e->Label = label; |
| 652 | return e; |
| 653 | } |
| 654 | |
| 655 | |
| 656 | lua::ImguiHandle TreeParent::AddDrag(char const* label, std::optional<float> value, std::optional<float> min, std::optional<float> max) |
nothing calls this directly
no outgoing calls
no test coverage detected