aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/model/IModel.java
blob: 6287c68efe3f60c4ca4197d8b58c91cca91cddcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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();
}