13 lines
170 B
C++
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);
|
|
};
|