/**************************************************************************** * Copyright 2019 Nreal Techonology Limited. All rights reserved. * * This file is part of NRSDK. * * https://www.nreal.ai/ * *****************************************************************************/ namespace NRKernal { using UnityEngine; using UnityEngine.EventSystems; /// A nr execute pointer events. public class NRExecutePointerEvents { /// The press enter handler. public static readonly ExecuteEvents.EventFunction PressEnterHandler = ExecuteEnter; /// Executes the 'enter' operation. /// The handler. /// Information describing the event. private static void ExecuteEnter(IEventSystemHandler handler, BaseEventData eventData) { } /// The press exit handler. public static readonly ExecuteEvents.EventFunction PressExitHandler = ExecuteExit; /// Executes the 'exit' operation. /// The handler. /// Information describing the event. private static void ExecuteExit(IEventSystemHandler handler, BaseEventData eventData) { } } }