| 490 | bool Enabled; |
| 491 | |
| 492 | BigButton(const std::string& name, const std::string& hoverText, std::function<void(void)> onClick, std::function<bool(void)> isSelected) : Name(name), HoverText(hoverText), OnClick(onClick), IsSelected(isSelected), Enabled(true) { } |
| 493 | std::string GetText() const { return Name; } |
| 494 | |
| 495 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected