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