SWADP/Opdracht_1/main.cpp

10 lines
146 B
C++
Raw Permalink Normal View History

2023-04-25 13:15:39 +00:00
#include "Positie.h"
#include "Robot.h"
int main ( ){
Positie P ( 5, 10 );
Robot R ( &P );
R.run ( );
R.show ( );
return 0;
}