diff options
Diffstat (limited to 'Client/Assets/Scripts/XUtliPoolLib/IXNormalItemDrawer.cs')
-rw-r--r-- | Client/Assets/Scripts/XUtliPoolLib/IXNormalItemDrawer.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XUtliPoolLib/IXNormalItemDrawer.cs b/Client/Assets/Scripts/XUtliPoolLib/IXNormalItemDrawer.cs new file mode 100644 index 00000000..4c7b5dca --- /dev/null +++ b/Client/Assets/Scripts/XUtliPoolLib/IXNormalItemDrawer.cs @@ -0,0 +1,10 @@ +using System;
+using UnityEngine;
+
+namespace XUtliPoolLib
+{
+ public interface IXNormalItemDrawer : IXInterface
+ {
+ void DrawItem(GameObject go, int itemID, int count, bool showCount);
+ }
+}
|