示例#1
0
文件: Pool.cs 项目: pachevartem/TD
 public Pool(IGetObj getObj, Transform parent, Vector3 startPosition, int countpool)
 {
     _getObj            = getObj;
     this.startPosition = startPosition;
     this.countpool     = countpool;
     this.parent        = parent;
     setPool();
 }
示例#2
0
 public BulletPool(IGetObj getObj, Transform parent, Vector3 startPosition, int countpool) : base(getObj, parent, startPosition, countpool)
 {
 }