Exemplo n.º 1
0
 public void RemoveAfterUnitFight(UnitAfterFight handler)
 {
     if (!PostAfterUnitFight.Remove(handler))
     {
         DebugUtils.LogError(DebugUtils.Type.AI_Soldier, "Try to remove a unregister message!");
     }
 }
Exemplo n.º 2
0
 public void RegisterAfterUnitFight(UnitAfterFight handler)
 {
     PostAfterUnitFight.Add(handler);
 }