fixed issue with potion output, added extras menu for player race selection
This commit is contained in:
11
src/item.cc
Normal file
11
src/item.cc
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user