mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-18 16:59:19 +02:00
23 lines
241 B
C++
23 lines
241 B
C++
#pragma once
|
|
|
|
class ui_panel;
|
|
|
|
namespace ui {
|
|
|
|
class popup {
|
|
std::string m_id;
|
|
static int id;
|
|
|
|
public:
|
|
popup(ui_panel &panel);
|
|
virtual ~popup();
|
|
|
|
bool render();
|
|
|
|
protected:
|
|
ui_panel &m_parent;
|
|
virtual void render_content() = 0;
|
|
};
|
|
|
|
}
|