Package models

Examples of models.Bank


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();
    ButtonPanel buttonPanel = new ButtonPanel(helpPanel);
View Full Code Here

TOP

Related Classes of models.Bank

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.