29 lines
489 B
C++
29 lines
489 B
C++
#ifndef BILLYSHEET_GUI_DATA_HPP
|
|
#define BILLYSHEET_GUI_DATA_HPP
|
|
|
|
#include "character_sheet.hpp"
|
|
#include <spdlog/spdlog.h>
|
|
|
|
namespace gui {
|
|
class Window;
|
|
|
|
class GuiData final {
|
|
private:
|
|
Window &window;
|
|
|
|
character::CharacterSheet billy;
|
|
|
|
public:
|
|
GuiData() = delete;
|
|
|
|
explicit GuiData(Window &wwindow) : window(wwindow) { SPDLOG_DEBUG("Creating GUI Data"); }
|
|
|
|
[[nodiscard]] Window &get_window() const;
|
|
|
|
~GuiData() noexcept = default;
|
|
};
|
|
}
|
|
|
|
|
|
#endif //BILLYSHEET_GUI_DATA_HPP
|