public PlayerAnimationController(
     PlayerAnimationStates playerAnimationStates,
     PlayerModel playerModel)
 {
     _playerAnimationStates = playerAnimationStates;
     _playerModel           = playerModel;
 }
Exemplo n.º 2
0
 public PlayerDeathHandler(
     PlayerModel playerModel,
     LivesCounter livesCounter,
     PlayerAnimationStates playerAnimationStates)
 {
     _playerModel           = playerModel;
     _livesCounter          = livesCounter;
     _playerAnimationStates = playerAnimationStates;
 }
Exemplo n.º 3
0
 public PlayerMovement(
     Settings settings,
     PlayerModel playerModel,
     PlayerInputState playerInputState,
     PlayerAnimationStates playerAnimationStates)
 {
     _settings    = settings;
     _playerModel = playerModel;
     _inputState  = playerInputState;
 }