8 lines
112 B
C#
8 lines
112 B
C#
|
using System;
|
||
|
using UnityEngine.Events;
|
||
|
|
||
|
[Serializable]
|
||
|
public class InteractEventFloat : UnityEvent<float>
|
||
|
{
|
||
|
}
|