Creating a class Player based on instructions
Hi i got a few questions.
What exactly does an enum do and how would it apply to my program?`
What exactly does an enum do and how would it apply to my program?`

public abstract class Player
{
private string name;
private string Disk;
public abstract void RequestMove(GameBoard GameBoard, string[] ListOfValidMoves);
}