Examples of Orc


Examples of Character.Races.RInstances.Orc

        break;
      case 2:
        race1 = new Undead();
        break;
      case 3:
        race1 = new Orc();
        break;
      default:
        System.err.println("Error choosing race from Player 1");
        System.exit(1);
      }
      switch (teamJ2) {
      case 0:
        race2 = new Elf();
        break;
      case 1:
        race2 = new Human();
        break;
      case 2:
        race2 = new Undead();
        break;
      case 3:
        race2 = new Orc();
        break;
      default:
        System.err.println("Error choosing race from Player 2");
        System.exit(1);
      }
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.