public bool CanHoldItem(VBItemType i) { if (InvWeight() + i.Weight <= GetMaxWeight()) { return(true); } return(false); }
// public void SetType(VBItemType _type) { itemType = _type; }