package model; /** * Created by loic on 21/09/16. */ public interface IModel { /** * Get a copy of the board * @return */ int[][] getBoard(); /** * Get the score * @return */ int getScore(); }