mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-19 00:59:18 +02:00
11 lines
194 B
C++
11 lines
194 B
C++
#include "uilayer.h"
|
|
|
|
namespace ui {
|
|
class vehiclelist_panel : public ui_panel {
|
|
public:
|
|
vehiclelist_panel() : ui_panel("Vehicle list", true) {}
|
|
|
|
void render_contents() override;
|
|
};
|
|
}
|