13 lines
240 B
C#
13 lines
240 B
C#
using UnityEngine;
|
|
|
|
public interface IInteractable
|
|
{
|
|
Transform transform { get; }
|
|
void onSelectEnter();
|
|
void onSelectExit();
|
|
void onHoverEnter();
|
|
void onHoverExit();
|
|
void highLightOn();
|
|
void highLightOff();
|
|
|
|
} |