Base structure for player bags.
Пример #1
0
 public void AddBag(int slot, int type, int state)
 {
     Bag nBag = new Bag((ushort)state, slot, 0);
     m_Bags.Add(slot, nBag);
     ++BagCount;
 }