Esempio n. 1
0
 /**
  * Private Constructor for Singleton.
  * Initialize the list and the stateMachine
  */
 private GameEngine()
 {
     playerDeck   = new Deck();
     hand         = new Hand();
     disposalPile = new DisposalPile();
     stateMachine = new StateMachine();
 }