mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-18 08:59:18 +02:00
22 lines
314 B
C++
22 lines
314 B
C++
#include "uilayer.h"
|
|
#include "translation.h"
|
|
#include "command.h"
|
|
|
|
namespace ui {
|
|
class time_panel : public ui_panel {
|
|
command_relay m_relay;
|
|
|
|
float time;
|
|
int yearday;
|
|
float fog;
|
|
float overcast;
|
|
float temperature;
|
|
|
|
public:
|
|
time_panel();
|
|
|
|
void render_contents() override;
|
|
void open();
|
|
};
|
|
}
|