/**
* Creates the behaviors and PlayerController used in the game
*/
public WarController()
{
Deck dk = Deck.getInstance();
dk.reset();
dk.shuffle();
timer = WarTimer.getInstance();
CheatingBehavior player1 = new NotCheating();
CheatingBehavior player2 = new Cheating();
playerCon = new PlayerController(player1, player2);