diff options
Diffstat (limited to 'Client/Assets/Scripts/XUtliPoolLib/ILoopItemObject.cs')
-rw-r--r-- | Client/Assets/Scripts/XUtliPoolLib/ILoopItemObject.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XUtliPoolLib/ILoopItemObject.cs b/Client/Assets/Scripts/XUtliPoolLib/ILoopItemObject.cs new file mode 100644 index 00000000..a447283f --- /dev/null +++ b/Client/Assets/Scripts/XUtliPoolLib/ILoopItemObject.cs @@ -0,0 +1,16 @@ +using System;
+using UnityEngine;
+
+namespace XUtliPoolLib
+{
+ public interface ILoopItemObject
+ {
+ int dataIndex { get; set; }
+
+ bool isVisible();
+
+ GameObject GetObj();
+
+ void SetHeight(int height);
+ }
+}
|