예제 #1
0
파일: WornGear.java 프로젝트: nexus671/MRPG
 /**
  * Slot is empty boolean.
  *
  * @param slot the slot
  * @return the boolean
  */
 public boolean slotIsEmpty(WornSlot slot) {
   int index = slot.getSlotNumber();
   return (gear[index] == null);
 }
예제 #2
0
파일: WornGear.java 프로젝트: nexus671/MRPG
 /**
  * Gets from slot.
  *
  * @param slot the slot
  * @return the from slot
  */
 public Gear getFromSlot(WornSlot slot) {
   return gear[slot.getSlotNumber()];
 }
예제 #3
0
파일: WornGear.java 프로젝트: nexus671/MRPG
 /**
  * ************ Specific Methods
  *
  * @param g the g
  * @return the boolean
  */
 public boolean contains(Gear g) {
   WornSlot slot = g.getSlot();
   return gear[slot.getSlotNumber()].equals(g);
 }