fixed issue with potion output, added extras menu for player race selection

This commit is contained in:
2024-07-18 13:59:58 -04:00
parent dfea74ed42
commit 12fcde6a3b
6 changed files with 70 additions and 76 deletions

11
src/item.cc Normal file
View File

@ -0,0 +1,11 @@
#include "item.h"
item::item(const position &pos): pos{pos} {}
position item::get_pos() const {
return pos;
}
void item::set_pos(const position &npos) {
pos = npos;
}