added robot interface and robot base class
This commit is contained in:
@@ -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;
|
||||
};
|
||||
Reference in New Issue
Block a user