aboutsummaryrefslogtreecommitdiffstats
path: root/YetiHack/include
diff options
context:
space:
mode:
Diffstat (limited to 'YetiHack/include')
-rw-r--r--YetiHack/include/yeti.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/YetiHack/include/yeti.h b/YetiHack/include/yeti.h
deleted file mode 100644
index 592e09f..0000000
--- a/YetiHack/include/yeti.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <vector>
-using namespace std;
-class yeti
-{
- public:
- void moveleft();
- void moveright();
- void moveup();
- void movedown();
- yeti(int, int, int, int);
- void movetowards(int, int, vector<yeti>, int);
- int xpos();
- int ypos();
- private:
- int x;
- int y;
- int sizex;
- int sizey;
- int absolute(int);
-};
-