コード例 #1
0
ファイル: ImportManager.cs プロジェクト: treert/SimpleScript
 public void RegisterHandler(Type t, IImportTypeHandler handler)
 {
     _handlers[t] = handler;
 }
コード例 #2
0
 public void RegisterTypeHandler(Type t, IImportTypeHandler handler)
 {
     m_import_manager.RegisterHandler(t, handler);
 }