| 498 | |
| 499 | |
| 500 | lua::ImguiHandle TreeParent::AddMenu(char const* label) |
| 501 | { |
| 502 | auto menu = AddChild<Menu>(); |
| 503 | menu->Label = label; |
| 504 | return menu; |
| 505 | } |
| 506 | |
| 507 | |
| 508 | lua::ImguiHandle TreeParent::AddSelectable(char const* label, std::optional<GuiSelectableFlags> flags, std::optional<glm::vec2> size) |
nothing calls this directly
no outgoing calls
no test coverage detected