Add project skeleton: CMake, Game and bots

This commit is contained in:
2026-04-15 13:14:18 +02:00
parent 4a38215e31
commit 22e8ea8d46
11 changed files with 560 additions and 0 deletions
+12
View File
@@ -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;
};