コード例 #1
0
ファイル: Inventory.cs プロジェクト: AnonK2/planet
 public InventoryEntry Clone()
 {
     return(new InventoryEntry(m_Name, m_Count)
     {
         m_Properties = (null != m_Properties ? m_Properties.CloneTyped() : null)
     });
 }