mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-09-01 15:09:18 +02:00
20 lines
288 B
C++
20 lines
288 B
C++
#pragma once
|
|
|
|
#include "uilayer.h"
|
|
#include "scenery_scanner.h"
|
|
|
|
namespace ui
|
|
{
|
|
class scenerylist_panel : public ui_panel
|
|
{
|
|
public:
|
|
scenerylist_panel();
|
|
|
|
void render() override;
|
|
|
|
private:
|
|
scenery_scanner scanner;
|
|
scenery_desc const *selected_scenery = nullptr;
|
|
};
|
|
} // namespace ui
|