diff options
| author | Ray Hogenson <rayhogenson@gmail.com> | 2012-01-10 15:12:17 -0900 |
|---|---|---|
| committer | Ray Hogenson <rayhogenson@gmail.com> | 2012-01-10 15:12:17 -0900 |
| commit | 4e87a290412cea63f548760de6f4a91b1d1ba352 (patch) | |
| tree | 4d60cea3683dafbe56cc8f6474078fc8f7016608 /YetiHack/include/yeti.h | |
| download | yetihack-4e87a290412cea63f548760de6f4a91b1d1ba352.tar.zst | |
yetihack v.1
Diffstat (limited to 'YetiHack/include/yeti.h')
| -rw-r--r-- | YetiHack/include/yeti.h | 21 |
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); +}; + |
