aboutsummaryrefslogtreecommitdiffstats
path: root/YetiHack/include
diff options
context:
space:
mode:
authorRay Hogenson <rayhogenson@gmail.com>2012-01-10 15:24:39 -0900
committerRay Hogenson <rayhogenson@gmail.com>2012-01-10 15:24:39 -0900
commitc1d1a4cfb55e87fb4db68980b3af9c31fde363a9 (patch)
tree2d0f92a791c1151a9683788b808dd6eaf4857c2f /YetiHack/include
parentwrong directory (diff)
parentyetihack v.1 (diff)
downloadyetihack-c1d1a4cfb55e87fb4db68980b3af9c31fde363a9.tar.zst
Merge branch 'master' of github.com:rayhogenson/YetiHack
Diffstat (limited to 'YetiHack/include')
-rw-r--r--YetiHack/include/yeti.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/YetiHack/include/yeti.h b/YetiHack/include/yeti.h
new file mode 100644
index 0000000..592e09f
--- /dev/null
+++ b/YetiHack/include/yeti.h
@@ -0,0 +1,21 @@
+#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);
+};
+