Exemplo n.º 1
0
 public HeroActions(
     HeroControllerState controllerState,
     HeroModel model)
 {
     _controllerState = controllerState;
     _model           = model;
 }
Exemplo n.º 2
0
 public HeroMovement(
     HeroControllerState controllerState,
     HeroModel model,
     Settings settings)
 {
     _controllerState = controllerState;
     _model           = model;
     _settings        = settings;
 }
Exemplo n.º 3
0
 public void Construct(HeroModel model)
 {
     _model = model;
 }
Exemplo n.º 4
0
 public HeroAnimatorProcessor(Animator animator, HeroModel model)
 {
     _animator = animator;
     _model    = model;
 }