9 lines
121 B
C#
9 lines
121 B
C#
|
using System;
|
||
|
namespace UnityEngine.Events
|
||
|
{
|
||
|
[Serializable]
|
||
|
public sealed class FloatEvent : UnityEvent<float>
|
||
|
{
|
||
|
}
|
||
|
}
|