Exemple #1
0
 public IFieldPool GetPool(FieldObjType type)
 {
     if (!_pools.ContainsKey(type))
     {
         _pools[type] = new FieldObjPool();
     }
     return(_pools[type]);
 }
Exemple #2
0
 public IFieldPool GetPool(FieldObjType type)
 => Fields.FirstOrDefault()?.GetPool(type);