diff options
author | Andy Belle-Isle <abelleisle@roadrunner.com> | 2015-09-10 11:51:00 -0400 |
---|---|---|
committer | Andy Belle-Isle <abelleisle@roadrunner.com> | 2015-09-10 11:51:00 -0400 |
commit | dfb65f04b8579c9c4e24086452474adcae9b87b7 (patch) | |
tree | a020a31c1813f52864b71025c133823b6aad9f55 /include | |
parent | 1f769cf0e589001adc4a65d621f7968550209799 (diff) |
Stuff
Diffstat (limited to 'include')
-rw-r--r-- | include/entities.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/include/entities.h b/include/entities.h new file mode 100644 index 0000000..cb10bcf --- /dev/null +++ b/include/entities.h @@ -0,0 +1,29 @@ +#ifndef ENTITIES_H +#define ENTITIES_H + +#include <common.h> + + +class Entities{ +public: + float width; + float height; + float speed; + int type; + vec2 loc; + vec2 loci; + vec2 vel; + vec2 velg; + + void spawn(float, float); + + +}; + +class Player : public Entities{ +public: + Player(); + ~Player(); +}; + +#endif //ENTITIES_H
\ No newline at end of file |