ISelectClickHandler

Interface to handle select button click.

using JMRSDK.InputModule;
using UnityEngine;
public class InterfaceExample: MonoBehaviour, ISelectClickHandler
{
    public void OnSelectClicked(SelectClickEventData eventData) 
    {
        Debug.Log("OnSelectClicked");
    }
}

SelectClickEventData