SWADP/Opdracht_1/Robot.h
Hello_User 0ae21fa8ab Fix opdracht 1 en 2
Co-authored-by: Aryan Lala (19097727) <A.E.Lala@student.hhs.nl>
2023-05-11 10:40:01 +02:00

17 lines
219 B
C++

#ifndef Robot_H
#define Robot_H
class Positie;
class Interface;
class Robot{
private:
Interface *P;
public:
Robot (Interface*);
virtual ~Robot();
virtual void run();
virtual void show();
};
#endif