#ifndef YETI_H #define YETI_H #endif #include using namespace std; class yeti { public: void moveleft(); void moveright(); void moveup(); void movedown(); yeti(int, int, int, int); void movetowards(int, int, vector, int); int xpos(); int ypos(); private: int x; int y; int sizex; int sizey; int absolute(int); };