コード例 #1
0
ファイル: ExtMgr.cs プロジェクト: treert/SimpleScript
        public ExtItem Clone()
        {
            var item = new ExtItem();

            item.m_calls.AddRange(m_calls);
            return(item);
        }
コード例 #2
0
ファイル: ExtMgr.cs プロジェクト: treert/SimpleScript
 public void Merge(ExtItem item)
 {
     m_calls.AddRange(item.m_calls);
 }
コード例 #3
0
ファイル: ExtMgr.cs プロジェクト: treert/SimpleScript
 public void Register(Type type, ExtItem item)
 {
     m_raw_items.Add(type, item);
 }