8 lines
164 B
C#
8 lines
164 B
C#
|
|
using UnityEngine.Events;
|
||
|
|
|
||
|
|
namespace DamageSystem.Events
|
||
|
|
{
|
||
|
|
[System.Serializable]
|
||
|
|
public class OnDamageEvent : UnityEvent<DamageInfo , DamageablePart> { }
|
||
|
|
|
||
|
|
}
|