summaryrefslogtreecommitdiff
path: root/Assets/UI_Extension/Scripts/Animation/Tween/ITweenEventHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/UI_Extension/Scripts/Animation/Tween/ITweenEventHandler.cs')
-rw-r--r--Assets/UI_Extension/Scripts/Animation/Tween/ITweenEventHandler.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Assets/UI_Extension/Scripts/Animation/Tween/ITweenEventHandler.cs b/Assets/UI_Extension/Scripts/Animation/Tween/ITweenEventHandler.cs
new file mode 100644
index 0000000..4b53b97
--- /dev/null
+++ b/Assets/UI_Extension/Scripts/Animation/Tween/ITweenEventHandler.cs
@@ -0,0 +1,11 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace TweenAnimation
+{
+ public interface ITweenEventHandler
+ {
+ void OnTweenEvent(string eventName);
+ }
+}