aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-10-04 19:39:08 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-10-04 19:39:08 -0400
commite58c8920f5332678e4446a8c33bc74a716024010 (patch)
tree7cc26dfbf5c7999047a39659794eafcd00769d3d /src/entities.cpp
parent63dc9b399db9faef611c31629e0265b954d74197 (diff)
parenta277430f0ddde9ea2583f4b0c44fcafe8a2528bf (diff)
Added texture support and basic textures
Diffstat (limited to 'src/entities.cpp')
-rw-r--r--src/entities.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/entities.cpp b/src/entities.cpp
index 429e3e5..64c8cb7 100644
--- a/src/entities.cpp
+++ b/src/entities.cpp
@@ -126,6 +126,7 @@ Player::Player(){ //sets all of the player specific traits on object creation
ground = false;
near = true;
texture = loadTexture("assets/player.png");
+ inv = new Inventory(PLAYER_INV_SIZE);
}
void Player::interact(){ //the function that will cause the player to search for things to interact with
@@ -142,6 +143,7 @@ NPC::NPC(){ //sets all of the NPC specific traits on object creation
canMove = true;
near = false;
texture = loadTexture("assets/NPC.png");
+ inv = new Inventory(NPC_INV_SIZE);
}
void NPC::addAIFunc(int (*func)(NPC *)){