12 lines
181 B
C#
12 lines
181 B
C#
|
|
using DamageSystem;
|
||
|
|
using UnityEngine.Events;
|
||
|
|
|
||
|
|
namespace VRBeats.Events
|
||
|
|
{
|
||
|
|
[System.Serializable]
|
||
|
|
public class OnDamageEvent : UnityEvent<DamageInfo>
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|