| 506 | |
| 507 | |
| 508 | lua::ImguiHandle TreeParent::AddSelectable(char const* label, std::optional<GuiSelectableFlags> flags, std::optional<glm::vec2> size) |
| 509 | { |
| 510 | auto sel = AddChild<Selectable>(); |
| 511 | sel->Label = label; |
| 512 | if (flags) sel->Flags = *flags; |
| 513 | if (size) sel->Size = size; |
| 514 | return sel; |
| 515 | } |
| 516 | |
| 517 | |
| 518 | lua::ImguiHandle TreeParent::AddButton(char const* label) |
nothing calls this directly
no outgoing calls
no test coverage detected