working on the player

This commit is contained in:
Justin 2025-05-13 23:17:24 -05:00
parent 7beb263dfc
commit 0bfecbfb66
3 changed files with 22 additions and 4 deletions

View File

@ -0,0 +1,11 @@
class Inventory{
public:
Inventory(){
}
}

View File

@ -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;
};

View File

@ -0,0 +1,4 @@
#include "player.h"