Files
Tower-Defense/include/render/gui/FrameMenu.h
2023-01-02 13:05:43 +01:00

21 lines
288 B
C++

#pragma once
#include "GuiWidget.h"
namespace td {
namespace gui {
class FrameMenu : public GuiWidget {
private:
bool m_VSync;
bool m_IsometricView;
bool m_ShowDemoWindow;
public:
FrameMenu(client::Client* client);
virtual void Render();
};
} // namespace gui
} // namespace td