fixed typo issues and added some headers

This commit is contained in:
Justin 2025-05-15 19:42:55 -05:00
parent 0bfecbfb66
commit 3aee2fa468
4 changed files with 8 additions and 7 deletions

View File

@ -6,6 +6,6 @@ class Inventory{
Inventory(){
}
};
}
};

View File

@ -1,6 +1,6 @@
class Item(){
class Item{
};

View File

@ -1,4 +1,5 @@
#include "invertory.h"
#include "inventory.h"
#include "item.h"
class Player{
@ -6,8 +7,8 @@ class Player{
void move();
void add_inventory(Item);
bool check_inventory(Item);
bool remove_invertory(Item);
bool remove_inventory(Item);
private:
Invertory invertory;
Inventory inventory;
};

View File

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