Beginning writing gui and window wrapper for GLFW

This commit is contained in:
Pcornat 2022-01-08 21:57:17 +01:00
parent 10cb797084
commit 9dfe0faa56
Signed by: Pcornat
GPG key ID: 2F3932FF46D9ECA0
8 changed files with 141 additions and 4 deletions

18
include/gui.hpp Normal file
View file

@ -0,0 +1,18 @@
#ifndef BILLYSHEET_GUI_HPP
#define BILLYSHEET_GUI_HPP
namespace gui {
class Gui final {
private:
public:
Gui() = delete;
~Gui() noexcept;
};
}
#endif //BILLYSHEET_GUI_HPP