dotboxEngine/randomplayer.h

13 lines
170 B
C
Raw Normal View History

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