Ejemplo n.º 1
0
        public override void Initiate()
        {
            shellPool = new ShellPool();
            shellPool.InitiatePool();

            PreSpawnShells(maxSheelCount);
        }
Ejemplo n.º 2
0
 private void InitCollectablePool()
 {
     collectablePool = new CollectablesPool();
     collectablePool.InitiatePool();
 }
Ejemplo n.º 3
0
 private void initPlatformPool()
 {
     platformPool = new PlatformPool();
     platformPool.InitiatePool();
 }
Ejemplo n.º 4
0
 private void InitPool()
 {
     lazerPool = new LazerPool();
     lazerPool.InitiatePool();
 }
Ejemplo n.º 5
0
 private void InitObstaclePool()
 {
     obstaclePool = new ObstaclePool();
     obstaclePool.InitiatePool();
 }
Ejemplo n.º 6
0
 private void InitiatePool()
 {
     enemyPool = new EnemyPool();
     enemyPool.InitiatePool();
 }