Package clueless.model

Examples of clueless.model.Weapon


        selectedCharacter = new Character(character.getType());
      }
      else if(button instanceof WeaponButton)
      {
        WeaponButton weapon = (WeaponButton)button;
        selectedWeapon = new Weapon(weapon.getType());
      }
      else if(button instanceof RoomButton)
      {
        RoomButton location = (RoomButton)button;
        selectedRoom = new Room(location.getType());
View Full Code Here


        selectedCharacter = new clueless.model.Character(character.getType());
      }
      else if(button instanceof WeaponButton)
      {
        WeaponButton weapon = (WeaponButton)button;
        selectedWeapon = new Weapon(weapon.getType());
      }
      else if(button instanceof RoomButton)
      {
        RoomButton location = (RoomButton)button;
        selectedRoom = new Room(location.getType());
View Full Code Here

TOP

Related Classes of clueless.model.Weapon

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.