public GameRunner( ShipFacade.Factory shipFactory, CowboyFacade.Factory cowboyFactory, PlayerService playerService ) { this.shipFactory = shipFactory; this.cowboyFactory = cowboyFactory; this.playerService = playerService; }
public ShipSpawner(ObjectGlobalTunables globalTunables, ObjectRegistry registry, ShipFacade.Factory factory, Settings settings) : base(globalTunables, registry) { ObjectFactory = factory; _settings = settings; }
public GameRunner(ShipFacade.Factory shipFactory) { _shipFactory = shipFactory; }