public class Player { private char mark; public Player(char mark) { this.mark = mark; } public char getMark() { return mark; } }