示例#1
0
 public Inventory(float weightLimit, Equipment equipment)
 {
     this.weightLimit = weightLimit;
     this.equipment = equipment;
     weight = equipment.getEquipmentWeight();
 }