enum Checker { RED, BLACK, EMPTY }; public interface Playable { boolean addChecker( int column ); int getRows(); int getColumns(); }