13 lines
248 B
C++
13 lines
248 B
C++
#pragma once
|
|
|
|
#include "BaseRobot.h"
|
|
|
|
class World;
|
|
|
|
class RandomBot : public BaseRobot {
|
|
/* A robot that digs at a random depth */
|
|
public:
|
|
RandomBot ( const int startX, const int startY );
|
|
int mine ( World& world ) override;
|
|
};
|