Compare commits

..

No commits in common. "6a69ea5685de319ee94f9a64f266858e24fd77c3" and "0bfecbfb660bf74137b2ab589bed8843a9f3a10d" have entirely different histories.

5 changed files with 7 additions and 9 deletions

View File

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

View File

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