added robot interface and robot base class

This commit is contained in:
2026-04-14 23:44:24 +02:00
parent d53986f907
commit b43f266973
6 changed files with 108 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#pragma once
#include "../include/BaseRobot.h"
class SortBot : public BaseRobot {
public:
SortBot ( int startX, int startY );
int mine ( World &world ) override;
};