Files
Tower-Defense/include/render/gui/FrameMenu.h

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