mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-21 00:09:19 +02:00
15 lines
168 B
C++
15 lines
168 B
C++
#pragma once
|
|
|
|
#include "uilayer.h"
|
|
|
|
namespace ui
|
|
{
|
|
class mainmenu_panel : public ui_panel
|
|
{
|
|
public:
|
|
mainmenu_panel();
|
|
|
|
void render() override;
|
|
};
|
|
} // namespace ui
|