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