public ExtItem Clone() { var item = new ExtItem(); item.m_calls.AddRange(m_calls); return(item); }
public void Merge(ExtItem item) { m_calls.AddRange(item.m_calls); }
public void Register(Type type, ExtItem item) { m_raw_items.Add(type, item); }