#ifndef INTERFACE_H #define INTERFACE_H class Interface { private: public: Interface(); virtual ~Interface(){}; virtual int x() = 0; virtual int y() = 0; virtual void move(int, int) = 0; }; #endif