source: src/main/java/agents/BidHistoryKeeper.java@ 209

Last change on this file since 209 was 127, checked in by Wouter Pasman, 6 years ago

#41 ROLL BACK of rev.126 . So this version is equal to rev. 125

File size: 229 bytes
Line 
1package agents;
2
3import genius.core.Bid;
4import genius.core.BidHistory;
5
6public 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.