16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 17:29:18 +02:00

vehicle params window, aware system rewrite, sifa

This commit is contained in:
milek7
2019-03-16 01:21:59 +01:00
parent f1c8c8f1cd
commit 3556a2d0e6
24 changed files with 622 additions and 451 deletions

View File

@@ -2,21 +2,23 @@
class ui_panel;
namespace ui {
namespace ui
{
class popup {
class popup
{
std::string m_id;
static int id;
public:
public:
popup(ui_panel &panel);
~popup();
bool render();
protected:
protected:
ui_panel &m_parent;
virtual void render_content() = 0;
};
}
} // namespace ui