public GameSimulationState(ILog logger, IBsView view, IBsHudView hudView, IInputController input, GameConfig config) { _logger = logger; _view = view; _hudView = hudView; _input = input; _config = config; }
public BsPresenter(IBsView view, IBsHudView hudView, IBsModel model, IInputController input, ILog logger) { _view = view; _hudView = hudView; _model = model; _input = input; _logger = logger; _selection = new BsSelection(); }