コード例 #1
0
 public void SetItemArray(int Index, ShopItemObjWraperV1 v)
 {
     if (Index < 0 || Index >= (int)m_ItemArray.Count)
     {
         return;
     }
     m_ItemArray[Index] = v;
 }
コード例 #2
0
 public void AddItemArray(ShopItemObjWraperV1 v)
 {
     m_ItemArray.Add(v);
 }