|
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
public class CharacterEvents
|
|
{
|
|
// character damage and damage value
|
|
public static UnityAction<GameObject, int> characterDamaged;
|
|
|
|
// character healed and amount healed
|
|
public static UnityAction<GameObject, int> characterHealed;
|
|
} |