public HudView(IController controller, IHUDScene scene) { _hudSceneController = controller; _hudScene = scene; _spriteEntiesToRender = new List<ISpriteEntity>(); _textEntiesToRender = new List<ITextEntity>(); }
public HudView(IController controller, IHUDScene hudScene) { _controller = controller; _entity = hudScene; }
public HUDSceneController(IHUDScene hudScene, IGameManager gameManager) { _hudScene = hudScene; _hudView = new HudView(this, hudScene); _gameManager = gameManager; }