using UnityEngine; public interface IInteractable { Transform transform { get; } void onSelectEnter(); void onSelectExit(); void onHoverEnter(); void onHoverExit(); void highLightOn(); void highLightOff(); }