/* * Copyright (c) 2019. All rights reserved. * * @author Pieter De Clercq */ /** * Represents a player in the Tic-tac-toe exercise. */ public enum TicTacToePlayer { O, X; }