Exemplo n.º 1
0
 public SpawnUnitStateAction(IStateActionRegistry <FightState> registry, IUnitInfoHolder unitInfoHolder) : base(registry)
 {
     _unitInfoHolder = unitInfoHolder;
 }
Exemplo n.º 2
0
 protected SelfRegisteringStateAction(IStateActionRegistry <TState> registry)
 {
     registry.Register(this);
 }
Exemplo n.º 3
0
 public StateActionExecutor(IStateActionRegistry <TState> registry)
 {
     _registry = registry;
 }
Exemplo n.º 4
0
 public MoveStateAction(IStateActionRegistry <FightState> registry) : base(registry)
 {
 }