source:
ai2020/group6/EmptyOpponentModel.java@
4
Last change on this file since 4 was 3, checked in by , 4 years ago | |
---|---|
File size: 277 bytes |
Rev | Line | |
---|---|---|
[3] | 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.