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