blob: 4c7b5dcab05aacb6a84cc4d28c328173491cfc0b (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System;
using UnityEngine;
namespace XUtliPoolLib
{
public interface IXNormalItemDrawer : IXInterface
{
void DrawItem(GameObject go, int itemID, int count, bool showCount);
}
}
|