source:
ai2020/group6/EmptyOpponentModel.java@
5
Last change on this file since 5 was 3, checked in by , 4 years ago | |
---|---|
File size: 277 bytes |
Line | |
---|---|
1 | package ai2020.group6; |
2 | |
3 | import geniusweb.actions.Action; |
4 | |
5 | public 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.