package TicTac;import java.util.*; public abstract class TTPlayer{ public static final char X ='X'; public static final char O = 'O'; public static final char B ='\0'; protected char _mark; // the symbol used by this player to mark the board. public abstract TTMove NextMove(char[][] board_status); }