mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 06:55:02 +01:00
24 lines
345 B
C++
24 lines
345 B
C++
#include "application/uilayer.h"
|
|
#include "utilities/translation.h"
|
|
#include "input/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();
|
|
};
|
|
} // namespace ui
|