#ifndef OBJSPOT_H #define OBJSPOT_H #include class spot { private: short int x, y; public: spot (); spot (int xVal, int yVal); ~spot (); void plot (HDC hdc); void erase (HDC hdc); void move (HDC hdc, int toX, int toY); int getX (); int getY (); }; #endif