7 lines
146 B
C#
7 lines
146 B
C#
|
|
using UnityEngine.Events;
|
||
|
|
|
||
|
|
namespace DamageSystem.Events
|
||
|
|
{
|
||
|
|
[System.Serializable]
|
||
|
|
public class OnValueChangeEvent : UnityEvent<float> { }
|
||
|
|
}
|