C#C
C#15mo ago
Merineth

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?`
    public abstract class Player
    {
        private string name;
        private string Disk;

        public abstract void RequestMove(GameBoard GameBoard, string[] ListOfValidMoves);
    }
image.png
Was this page helpful?