diff options
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUIPlayTweenGroup.cs')
-rw-r--r-- | Client/Assets/Scripts/UILib/IXUIPlayTweenGroup.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUIPlayTweenGroup.cs b/Client/Assets/Scripts/UILib/IXUIPlayTweenGroup.cs new file mode 100644 index 00000000..fede3915 --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUIPlayTweenGroup.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace UILib
+{
+ public interface IXUIPlayTweenGroup
+ {
+ void PlayTween(bool bForward);
+
+ void ResetTween(bool bForward);
+
+ void StopTween();
+ }
+}
|