Avalon.PrimaryType.Character.AddBag C# (CSharp) Method

AddBag() public method

public AddBag ( int slot, int type, int state ) : void
slot int
type int
state int
return void
        public void AddBag(int slot, int type, int state)
        {
            Bag nBag = new Bag((ushort)state, slot, 0);
            m_Bags.Add(slot, nBag);
            ++BagCount;
        }