Compare commits

..

2 Commits

Author SHA1 Message Date
Justin 6a69ea5685 added a exit 2025-05-15 20:35:13 -05:00
Justin 3aee2fa468 fixed typo issues and added some headers 2025-05-15 19:42:55 -05:00
5 changed files with 9 additions and 7 deletions

View File

@ -21,6 +21,7 @@ void Game::gameloop(){
}
previous_time = chrono::steady_clock::now();
exit(1);
}
}

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"