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

17
src/item.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef __ITEM_H__
#define __ITEM_H__
#include "position.h"
#include "output.h"
class item {
protected:
position pos;
public:
item(const position &pos);
position get_pos() const;
void set_pos(const position &npos);
virtual void print(output *out) const = 0;
};
#endif