summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authortom <tom@explorer>2015-05-01 14:42:07 -0500
committertom <tom@explorer>2015-05-01 14:42:07 -0500
commit467a25d8db798e8b590773bb0b89eac36537b87a (patch)
treee2297efc4bdf900abfacd3e85eaee7445c34a0f3 /inc
parent386279f378d49f6dddb276fbfde92fe1444b6ea1 (diff)
removed temp and made compilable
Diffstat (limited to 'inc')
-rw-r--r--inc/creature.h~16
-rw-r--r--inc/window.h~24
2 files changed, 0 insertions, 40 deletions
diff --git a/inc/creature.h~ b/inc/creature.h~
deleted file mode 100644
index 19d4cb3..0000000
--- a/inc/creature.h~
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef creature_h
-#define creature_h
-
-#include "entity.h"
-
-class Creature: public Entity
-{
- public:
- Creature(Window m, std::string s);
- void Behavior();
- private:
- int xT;
- int yT;
-};
-
-#endif
diff --git a/inc/window.h~ b/inc/window.h~
deleted file mode 100644
index fb1cf67..0000000
--- a/inc/window.h~
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef window_h
-#define window_h
-
-#include <SDL2/SDL.h>
-#include <SDL2/SDL_image.h>
-#include <string>
-#include <cmath>
-
-class Window
-{
- public:
- Window();
- void Destroy();
-
- void Clear();
- void Render();
- SDL_Renderer* getRenderer();
-
- private:
- SDL_Window* main;
- SDL_Renderer* renderer;
-};
-
-#endif