Beginning writing gui and window wrapper for GLFW
This commit is contained in:
parent
10cb797084
commit
9dfe0faa56
8 changed files with 141 additions and 4 deletions
16
include/gui_data.hpp
Normal file
16
include/gui_data.hpp
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef BILLYSHEET_GUI_DATA_HPP
|
||||
#define BILLYSHEET_GUI_DATA_HPP
|
||||
|
||||
namespace gui {
|
||||
class GuiData final {
|
||||
private:
|
||||
// GLFWwindow *window{ nullptr };
|
||||
|
||||
public:
|
||||
GuiData() = delete;
|
||||
~GuiData() noexcept = default;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif //BILLYSHEET_GUI_DATA_HPP
|
Loading…
Add table
Add a link
Reference in a new issue