package games.war.behaviors;
import game.Card;
import hand.Hand;
/**
* An honest behavior, will only pick the top most card of their hand
* @author Chris Hersh
*
*/
public class NotCheating implements CheatingBehavior
{
@Override
public Card getNextCard(Hand currHand)
{
Card nextCard = currHand.getCard(0);
currHand.removeCard(0);
//System.out.println(currHand);
return nextCard;
}
}