Files
Tower-Defense/include/render/gui/FrameMenu.h
2022-03-02 18:51:42 +01:00

21 lines
303 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