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

            return(false);
        }
Beispiel #2
0
 //
 public void SetType(VBItemType _type)
 {
     itemType = _type;
 }