package Player; /* Project: Connect 4 */ public interface Player { void init (Boolean color); String name (); int move (); void inform (int i); }