package dev.llan.model.board; import dev.llan.model.pieces.GamePieces; /* Defines the public operations on the game board. */ public interface Board { GamePieces init(); int getWidth(); int getHeight(); }