mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
18 lines
299 B
C++
18 lines
299 B
C++
#include "uilayer.h"
|
|
#include "translation.h"
|
|
#include "command.h"
|
|
|
|
namespace ui
|
|
{
|
|
class vehicleparams_panel : public ui_panel
|
|
{
|
|
std::string m_vehicle_name;
|
|
command_relay m_relay;
|
|
|
|
public:
|
|
vehicleparams_panel(const std::string &vehicle);
|
|
|
|
void render_contents() override;
|
|
};
|
|
} // namespace ui
|