11 lines
138 B
C#
11 lines
138 B
C#
using System;
|
|
using UnityEngine.Events;
|
|
|
|
namespace UIWidgets
|
|
{
|
|
[Serializable]
|
|
public class SubmitEventFloat : UnityEvent<float>
|
|
{
|
|
}
|
|
}
|