12 lines
244 B
C#
12 lines
244 B
C#
|
using UnityEngine.Events;
|
|||
|
using UnityEngine.Serialization;
|
|||
|
|
|||
|
namespace Interaction
|
|||
|
{
|
|||
|
public class UseInteractible : Interactible
|
|||
|
{
|
|||
|
[FormerlySerializedAs("Text")] public string UseText;
|
|||
|
|
|||
|
public UnityEvent OnUse;
|
|||
|
}
|
|||
|
}
|