Hymn to Beauty
C++ 3D Engine
InputWindow.hpp
Go to the documentation of this file.
1#pragma once
2
3namespace GUI {
6 public:
8 void Show();
9
11
14 bool IsVisible() const;
15
17
20 void SetVisible(bool visible);
21
22 private:
23 void AddButton();
24
25 bool visible = false;
26};
27} // namespace GUI
A window where input is configured.
Definition: InputWindow.hpp:5
bool IsVisible() const
Get whether the window is visible.
Definition: InputWindow.cpp:47
void SetVisible(bool visible)
Set whether the window should be visible.
Definition: InputWindow.cpp:51
void Show()
Show the window.
Definition: InputWindow.cpp:12
Definition: AssetEditor.hpp:9