Package models

Examples of models.CurrentCardList


import models.CurrentPlayerList;
import models.Player;

public class GameTest{
  public static void main(String [ ] args){
    CurrentCardList currentCardList = new CurrentCardList();
    Bank bank = new Bank(currentCardList);
    Player player1 = new Player("Jojo");
    Player player2 = new Player("Juju");
    MenuBar menuBar = new MenuBar();
    HelpPanel helpPanel = new HelpPanel();
View Full Code Here

TOP

Related Classes of models.CurrentCardList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.