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