Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. package com.ppcg.stockexchange;
  2.  
  3.  
  4. import com.ppcg.kothcomm.game.AbstractPlayer;
  5. import com.ppcg.kothcomm.utils.Tools;
  6.  
  7. import java.util.List;
  8.  
  9. public class WarGamer extends Player {
  10.  
  11. /**
  12. * @param offers All available offers
  13. * @return An offer you want to accept, or null if you want to accept neither.
  14. */
  15. public abstract Offer acceptOffer(List<Offer> offers){
  16. return null;
  17. }
  18.  
  19.  
  20. public abstract Offer makeOffer(List<Stock> currentStock){
  21. return null;
  22.  
  23. }
  24.  
  25.  
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement