Example #1
0
 public SpawnController(ISpawnItemSource <T> spawnItemSource)
 {
     _spawnItemSource = spawnItemSource;
 }
Example #2
0
 public EnemySpawnController(ISpawnItemSource <EnemyController> spawnItemSource, IPlayerNotifierEvent playerNotifier, IEnumerable <IEnemyPosNotifiable> enemyNotifiables) : base(spawnItemSource)
 {
     _enemyNotifiables = enemyNotifiables;
     _playerNotifier   = playerNotifier;
 }