dotboxEngine/randomplayer.h
2024-11-20 02:44:18 +00:00

13 lines
170 B
C++

//
// Created by pranshav on 11/18/24.
//
#include "points.h"
#include <cstdlib>
#include <ctime>
class RandomPlayer {
public:
point randomMove(Points& points);
};