aboutsummaryrefslogtreecommitdiffstats
path: root/YetiHack/include
diff options
context:
space:
mode:
authorRay Hogenson <rayhogenson@gmail.com>2012-01-10 15:34:34 -0900
committerRay Hogenson <rayhogenson@gmail.com>2012-01-10 15:34:34 -0900
commit6a4082406f71e40541602473bb0003fe3879fcdd (patch)
tree3fca53b15b55aa2a062d3d5db89ab82d6ebc90b1 /YetiHack/include
parentMerge branch 'master' of github.com:rayhogenson/YetiHack (diff)
downloadyetihack-6a4082406f71e40541602473bb0003fe3879fcdd.tar.zst
Working yetihack
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);
-};
-