summaryrefslogtreecommitdiff
path: root/inc/entity.hpp
diff options
context:
space:
mode:
authortom <tom@ground-control>2016-05-02 18:15:26 -0500
committertom <tom@ground-control>2016-05-02 18:15:26 -0500
commit4bb5b05443c36bc6e0a164bc7e324a5486be45ff (patch)
tree460cad1b8dac8d0af64b936f02447a832fbc625a /inc/entity.hpp
parentb5b0644cf5ca8f5a35c023a1b87a3e28ff33fc51 (diff)
commiting before refractoring type out of location and into entity
Diffstat (limited to 'inc/entity.hpp')
-rw-r--r--inc/entity.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/entity.hpp b/inc/entity.hpp
index 3555c62..ee42858 100644
--- a/inc/entity.hpp
+++ b/inc/entity.hpp
@@ -14,7 +14,8 @@ class Entity
Location L;
int height, width; //Dimensions of image on window
int degrees = 0;
- SDL_Texture* texture;
+ int type = 0;
+ SDL_Texture* texture;
SDL_Renderer* renderer;
};