Update project

This commit is contained in:
Minh Bui
2020-01-07 13:14:23 -07:00
commit fc3ec3660c
17 changed files with 2476 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package model;
/**
* An interface for generating strategies.
*
*
*/
public interface ComputerPlayer {
public int getMove(Connect4Model gameModel, boolean max);
}