Compiles, not run yet.

This commit is contained in:
Pcornat 2022-01-08 23:40:31 +01:00
parent 9dfe0faa56
commit 01697f9df4
Signed by: Pcornat
GPG key ID: 2F3932FF46D9ECA0
6 changed files with 94 additions and 15 deletions

View file

@ -9,8 +9,6 @@ namespace gui {
public:
Gui() = delete;
~Gui() noexcept;
};
}

View file

@ -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;
};
}