BillySheet/include/gui_data.hpp

17 lines
255 B
C++
Raw Normal View History

#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