| 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 | }; |
| 496 | std::vector<BigButton> buttons; |