summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/ILoopItemObject.cs
blob: a447283fbc4f90d6d66ba1db341e1de8a0ce06d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using UnityEngine;

namespace XUtliPoolLib
{
	public interface ILoopItemObject
	{
		int dataIndex { get; set; }

		bool isVisible();

		GameObject GetObj();

		void SetHeight(int height);
	}
}