Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using UnityEngine;
|
||||
|
||||
public interface IInteractable
|
||||
{
|
||||
Transform transform { get; }
|
||||
void onSelectEnter();
|
||||
void onSelectExit();
|
||||
void onHoverEnter();
|
||||
void onHoverExit();
|
||||
void highLightOn();
|
||||
void highLightOff();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user