summaryrefslogtreecommitdiff
path: root/src/entity.h
diff options
context:
space:
mode:
authorTom Barrett <tombarrett@cornell.engr.siu.edu>2015-05-01 13:06:29 -0500
committerTom Barrett <tombarrett@cornell.engr.siu.edu>2015-05-01 13:06:29 -0500
commit7cbc9334a09540627df8845bb9952196276ae6f9 (patch)
treea6173cfba42e457c5732f850a24d0b296da03a34 /src/entity.h
parent87d20801300e90423c17ad425364f77152eb88c3 (diff)
removed duplicates and redirected images
Diffstat (limited to 'src/entity.h')
-rw-r--r--src/entity.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/entity.h b/src/entity.h
deleted file mode 100644
index 1d16a2c..0000000
--- a/src/entity.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef entity_h
-#define entity_h
-
-#include "window.h"
-
-class Entity
-{
- public:
- void Place();
- SDL_Texture* loadTexture(std::string path, Window main);
-
- protected:
- int x, y;
- int height, width;
- int degrees = 0;
- SDL_Texture* texture;
- SDL_Renderer* renderer;
-};
-
-#endif