Add project skeleton: CMake, Game and bots
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user