diff --git a/src/include/inventory.h b/src/include/inventory.h index e69de29..e83792d 100644 --- a/src/include/inventory.h +++ b/src/include/inventory.h @@ -0,0 +1,11 @@ + + + +class Inventory{ + public: + + Inventory(){ + + } + +} diff --git a/src/include/player.h b/src/include/player.h index 711ee3a..ccc84ca 100644 --- a/src/include/player.h +++ b/src/include/player.h @@ -1,10 +1,13 @@ - +#include "invertory.h" class Player{ public: void move(); - void add_inventory(Item item); - bool check_inventory(Item item); - + void add_inventory(Item); + bool check_inventory(Item); + bool remove_invertory(Item); + + private: + Invertory invertory; }; diff --git a/src/player.cpp b/src/player.cpp index e69de29..52f2787 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -0,0 +1,4 @@ +#include "player.h" + + +