diff --git a/.gitignore b/.gitignore index 9d0d47a..2473ede 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ inventory.d player.d room.d wall.d +item.d diff --git a/src/include/item.h b/src/include/item.h index e69de29..82fb951 100644 --- a/src/include/item.h +++ b/src/include/item.h @@ -0,0 +1,6 @@ + + +class Item(){ + + +}; diff --git a/src/include/player.h b/src/include/player.h index e69de29..711ee3a 100644 --- a/src/include/player.h +++ b/src/include/player.h @@ -0,0 +1,10 @@ + + + +class Player{ + public: + void move(); + void add_inventory(Item item); + bool check_inventory(Item item); + +};