mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
16 lines
249 B
C++
16 lines
249 B
C++
#include "application/uilayer.h"
|
|
|
|
namespace ui
|
|
{
|
|
class vehiclelist_panel : public ui_panel
|
|
{
|
|
ui_layer &m_parent;
|
|
bool m_first_show = true;
|
|
|
|
public:
|
|
vehiclelist_panel(ui_layer &parent);
|
|
|
|
void render_contents() override;
|
|
};
|
|
} // namespace ui
|