mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-06 10:06:27 +02:00
12 lines
276 B
C++
12 lines
276 B
C++
![]() |
#include "Component.hpp"
|
||
|
|
||
|
namespace cgeditor {
|
||
|
class Menu : public Component {
|
||
|
std::vector<std::string> entries;
|
||
|
/// @brief Set to true if the menu was open during the last editor draw
|
||
|
bool WasOpen;
|
||
|
public:
|
||
|
Menu(Status *s);
|
||
|
void Refresh();
|
||
|
};
|
||
|
} // namespace cgeditor
|