Package aitgame.tilegame.ingameDisplay

Examples of aitgame.tilegame.ingameDisplay.DisplayContacts.show()


  */
    public void displayChoices() {
      renderer.addTextToScreen("Making the shit!");
      LinkedList contact = ((Creature)map.getPlayer()).getConnectionList();
    DisplayContacts contacts = new DisplayContacts(inputManager, contact);
    contacts.show(screen);
    int contactMenuChoice = contacts.getMenuOption();
    if(contactMenuChoice < contact.size()){
      runGame(((Creature)contact.get(contactMenuChoice)).getGame());
    }
  }
View Full Code Here


  */
    public void displayChoices() {
      renderer.addTextToScreen("Making the shit!");
      LinkedList contact = ((Creature)map.getPlayer()).getConnectionList();
    DisplayContacts contacts = new DisplayContacts(inputManager, contact);
    contacts.show(screen);
    int contactMenuChoice = contacts.getMenuOption();
    if(contactMenuChoice < contact.size()){
      runGame(((Creature)contact.get(contactMenuChoice)).getGame());
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.