summaryrefslogtreecommitdiff
path: root/inc/entity.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/entity.h')
-rw-r--r--inc/entity.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/inc/entity.h b/inc/entity.h
deleted file mode 100644
index 1d16a2c..0000000
--- a/inc/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