コード例 #1
0
ファイル: TypesCollection.cs プロジェクト: theumod/unitylog
 public int IndexOf(TypeConfigElement type)
 {
     return BaseIndexOf(type);
 }
コード例 #2
0
ファイル: TypesCollection.cs プロジェクト: theumod/unitylog
 public void Remove(TypeConfigElement type)
 {
     if (BaseIndexOf(type) >= 0)
         BaseRemove(type.Name);
 }
コード例 #3
0
ファイル: TypesCollection.cs プロジェクト: theumod/unitylog
 public void Add(TypeConfigElement type)
 {
     BaseAdd(type);
 }