changed unique_ptr access to using raw pointers to denote non-ownership

added new flag -e for extra stuff (potions/races)
IMPORTANT: main.cc is undergoing rework
This commit is contained in:
2024-07-12 09:58:30 -04:00
parent b3300b8e7c
commit c9e96b5e6e
8 changed files with 26 additions and 22 deletions

View File

@ -8,9 +8,9 @@
class curses_output final : public display {
private:
cursor &curse;
cursor *curse;
public:
curses_output(cursor &new_curse);
curses_output(cursor *new_curse);
void render() override;
void clear() override;