source:
src/main/java/agents/BidHistoryKeeper.java
Last change on this file was 127, checked in by , 6 years ago | |
---|---|
File size: 229 bytes |
Line | |
---|---|
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.