Files
BeatSaber/Assets/VRBeatsKit/Scripts/Events/OnIntValueChangeEvent.cs
T

11 lines
156 B
C#
Raw Normal View History

using UnityEngine.Events;
namespace VRBeats.Events
{
[System.Serializable]
public class OnIntValueChange : UnityEvent<int>
{
}
}