Esempio n. 1
0
        public bool CanHoldItem(VBItemType i)
        {
            if (InvWeight() + i.Weight <= GetMaxWeight())
            {
                return(true);
            }

            return(false);
        }
Esempio n. 2
0
 //
 public void SetType(VBItemType _type)
 {
     itemType = _type;
 }