SWADP/Opdracht_1/Robot.h

17 lines
219 B
C
Raw Normal View History

2023-04-25 13:15:39 +00:00
#ifndef Robot_H
#define Robot_H
class Positie;
class Interface;
2023-04-25 13:15:39 +00:00
class Robot{
private:
Interface *P;
2023-04-25 13:15:39 +00:00
public:
Robot (Interface*);
virtual ~Robot();
virtual void run();
virtual void show();
2023-04-25 13:15:39 +00:00
};
#endif