mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-05 17:46:28 +02:00
12 lines
No EOL
276 B
C++
12 lines
No EOL
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
|