source:
src/main/java/agents/BidHistoryKeeper.java@
345
Last change on this file since 345 was 127, checked in by , 6 years ago | |
---|---|
File size: 229 bytes |
Rev | Line | |
---|---|---|
[127] | 1 | package agents; |
2 | ||
3 | import genius.core.Bid; | |
4 | import genius.core.BidHistory; | |
5 | ||
6 | public interface BidHistoryKeeper | |
7 | { | |
8 | public BidHistory getOpponentHistory(); | |
9 | ||
10 | public Bid getMyLastBid(); | |
11 | ||
12 | public Bid getOpponentLastBid(); | |
13 | } |
Note:
See TracBrowser
for help on using the repository browser.