Starting the player

This commit is contained in:
Justin 2025-05-11 21:48:04 -05:00
parent 420998231b
commit 7beb263dfc
3 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View File

@ -13,3 +13,4 @@ inventory.d
player.d
room.d
wall.d
item.d

View File

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

View File

@ -0,0 +1,10 @@
class Player{
public:
void move();
void add_inventory(Item item);
bool check_inventory(Item item);
};