diff options
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUISthCollector.cs')
-rw-r--r-- | Client/Assets/Scripts/UILib/IXUISthCollector.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUISthCollector.cs b/Client/Assets/Scripts/UILib/IXUISthCollector.cs new file mode 100644 index 00000000..8059dabc --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUISthCollector.cs @@ -0,0 +1,21 @@ +using System;
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace UILib
+{
+ public interface IXUISthCollector : IXUIObject
+ {
+ void SetPosition(Vector3 srcGlobalPos, Vector3 desGlobalPos);
+
+ void SetSth(string name);
+
+ void SetSth(List<GameObject> goes);
+
+ void Emit();
+
+ void RegisterSthArrivedEventHandler(SthArrivedEventHandler eventHandler);
+
+ void RegisterCollectFinishEventHandler(CollectFinishEventHandler eventHandler);
+ }
+}
|