diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-10 11:31:30 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-10 11:31:30 -0400 |
commit | a3db993224c994fdff6f50fedcc266c5e0b94aa8 (patch) | |
tree | 74d24408ecd5479b2d9cb57d7d904f0336556abe /include | |
parent | 3fde0e7edf310245e5658b767840e742c9341597 (diff) |
added entities
Diffstat (limited to 'include')
-rw-r--r-- | include/entities.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/entities.h b/include/entities.h new file mode 100644 index 0000000..3ecf014 --- /dev/null +++ b/include/entities.h @@ -0,0 +1,26 @@ +#ifndef ENTITIES_H
+#define ENTITIES_H
+
+#include <common.h>
+
+
+class Entities{
+public:
+ float width;
+ float height;
+ float speed;
+ int type;
+ vec2 loc;
+
+ void spawn(float, float);
+
+
+};
+
+class Player : public Entities{
+public:
+ Player();
+ ~Player();
+};
+
+#endif //ENTITIES_H
\ No newline at end of file |