Compiles, not run yet.
This commit is contained in:
parent
9dfe0faa56
commit
01697f9df4
6 changed files with 94 additions and 15 deletions
|
@ -9,8 +9,6 @@ namespace gui {
|
|||
public:
|
||||
Gui() = delete;
|
||||
|
||||
|
||||
|
||||
~Gui() noexcept;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,13 +1,18 @@
|
|||
#ifndef BILLYSHEET_GUI_DATA_HPP
|
||||
#define BILLYSHEET_GUI_DATA_HPP
|
||||
|
||||
#include "window.hpp"
|
||||
|
||||
namespace gui {
|
||||
class GuiData final {
|
||||
private:
|
||||
// GLFWwindow *window{ nullptr };
|
||||
Window &window;
|
||||
|
||||
public:
|
||||
GuiData() = delete;
|
||||
|
||||
explicit GuiData(Window &wwindow) : window(wwindow) {}
|
||||
|
||||
~GuiData() noexcept = default;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue