Adding main characteristics
This commit is contained in:
parent
029acbbbb3
commit
4b5ec33d74
14 changed files with 124 additions and 8 deletions
|
@ -1,6 +1,8 @@
|
|||
#ifndef BILLYSHEET_GUI_DATA_HPP
|
||||
#define BILLYSHEET_GUI_DATA_HPP
|
||||
|
||||
#include "billy_sheet.hpp"
|
||||
#include <spdlog/spdlog.h>
|
||||
|
||||
namespace gui {
|
||||
class Window;
|
||||
|
@ -9,10 +11,12 @@ namespace gui {
|
|||
private:
|
||||
Window &window;
|
||||
|
||||
character::BillySheet billy;
|
||||
|
||||
public:
|
||||
GuiData() = delete;
|
||||
|
||||
explicit GuiData(Window &wwindow) : window(wwindow) {}
|
||||
explicit GuiData(Window &wwindow) : window(wwindow) { SPDLOG_DEBUG("Creating GUI Data"); }
|
||||
|
||||
[[nodiscard]] Window &get_window() const;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue