Exemplo n.º 1
0
 public void Initialize()
 {
     NumericBox.Initialize();
     ActionPointManager.Initialize();
     AddComponent <ConditionEventManagerComponent>();
     CurrentHealth.SetMaxValue(NumericBox.HealthPoint_I.Value);
     CurrentHealth.Reset();
 }
Exemplo n.º 2
0
 public void TriggerActionPoint(ActionPointType actionPointType, CombatAction action)
 {
     ActionPointManager.TriggerActionPoint(actionPointType, action);
 }
Exemplo n.º 3
0
 public void RemoveListener(ActionPointType actionPointType, Action <CombatAction> action)
 {
     ActionPointManager.RemoveListener(actionPointType, action);
 }
Exemplo n.º 4
0
 public void AddListener(ActionPointType actionPointType, Action <CombatAction> action)
 {
     ActionPointManager.AddListener(actionPointType, action);
 }