summaryrefslogtreecommitdiff
path: root/Thronefall_v1.0/Decompile/InteractorBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_v1.0/Decompile/InteractorBase.cs')
-rw-r--r--Thronefall_v1.0/Decompile/InteractorBase.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/Thronefall_v1.0/Decompile/InteractorBase.cs b/Thronefall_v1.0/Decompile/InteractorBase.cs
new file mode 100644
index 0000000..3c503c3
--- /dev/null
+++ b/Thronefall_v1.0/Decompile/InteractorBase.cs
@@ -0,0 +1,27 @@
+using UnityEngine;
+
+public abstract class InteractorBase : MonoBehaviour
+{
+ public virtual bool CanBeInteractedWith => true;
+
+ public virtual string ReturnTooltip()
+ {
+ return "";
+ }
+
+ public virtual void InteractionBegin(PlayerInteraction player)
+ {
+ }
+
+ public virtual void InteractionHold(PlayerInteraction player)
+ {
+ }
+
+ public virtual void InteractionEnd(PlayerInteraction player)
+ {
+ }
+
+ public abstract void Focus(PlayerInteraction player);
+
+ public abstract void Unfocus(PlayerInteraction player);
+}