summaryrefslogtreecommitdiff
path: root/GameCode/DmgEvent.cs
blob: 16d50b16894868eb672e8e63e79b3f213567aca3 (plain)
1
2
3
4
5
6
7
8
9
10
using System;
using UnityEngine.Events;

[Serializable]
public class DmgEvent
{
	public UnityEvent eventToCall;

	public float dmg;
}