SWADP/Opdracht_1/Interface.h

14 lines
197 B
C
Raw Normal View History

2023-04-25 13:15:39 +00:00
#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