diff options
Diffstat (limited to 'GameCode/DmgEvent.cs')
-rw-r--r-- | GameCode/DmgEvent.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/GameCode/DmgEvent.cs b/GameCode/DmgEvent.cs new file mode 100644 index 0000000..16d50b1 --- /dev/null +++ b/GameCode/DmgEvent.cs @@ -0,0 +1,10 @@ +using System; +using UnityEngine.Events; + +[Serializable] +public class DmgEvent +{ + public UnityEvent eventToCall; + + public float dmg; +} |