aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndy Belle-Isle <abelleisle@roadrunner.com>2015-09-12 01:24:33 -0400
committerAndy Belle-Isle <abelleisle@roadrunner.com>2015-09-12 01:24:33 -0400
commit6a28f446c501f09153ca77eb22951de7bb144e18 (patch)
tree4cfff74de1469689602e4e3864a406be9acd7cc7 /include
parent3782c6ae9581063b3ed9e45467ce43f0b320bb19 (diff)
Fixed movement and did a SUPER BETA version of NPC's
As much as I didn't want to, I had to get rid of SDL_AddTimer. Since it runs in a separate thread and does calculations at the same time as the main thread, a bunch of the data was getting messed up during the loop, so it was just easiest to remove it. (Just refresh the world a lot to see a village house spawn)
Diffstat (limited to 'include')
-rw-r--r--include/entities.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/entities.h b/include/entities.h
index 5deaa00..e50c77a 100644
--- a/include/entities.h
+++ b/include/entities.h
@@ -10,9 +10,9 @@ public:
float speed;
int type;
vec2 loc;
- vec2 loci;
vec2 vel;
- vec2 velg;
+ bool right,left;
+
void spawn(float, float);
};
@@ -22,4 +22,9 @@ public:
~Player();
};
+class NPC : public Entities{
+public:
+ NPC();
+};
+
#endif // ENTITIES_H