using UnityEngine.Events;
namespace VRSDK.Events
{
///
/// Event that gets called when the grab state change, we extend from UnityEvent so we can see this onn the inspector and add some listeners by hand if we want
///
[System.Serializable]
public class OnGrabStateChangeEvent : UnityEvent { }
}