SWADP/Opdracht_1/Robot.h

17 lines
211 B
C
Raw Normal View History

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