SWADP/Opdracht_1/Robot.h
Hello_User 30df0565e2 Opdracht 1 final, "begin" opdracht 2
Co-authored-by: Aryan Lala (19097727) <A.E.Lala@student.hhs.nl>
2023-04-26 14:39:59 +02:00

17 lines
211 B
C++

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