source: ai2020/group6/EmptyOpponentModel.java@ 5

Last change on this file since 5 was 3, checked in by wouter, 3 years ago

#1925 added group6 code.

File size: 277 bytes
Line 
1package ai2020.group6;
2
3import geniusweb.actions.Action;
4
5public class EmptyOpponentModel implements IOpponentModel {
6
7 public EmptyOpponentModel ( ) { }
8
9 @Override
10 public IOpponentModel updateOpponentModel(MAState state, Action action) {
11 return this;
12 }
13
14}
Note: See TracBrowser for help on using the repository browser.