summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/IControlParticle.cs
blob: 4fe0d87956ebfd07273340c78634c4df165c0b3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using UnityEngine;

namespace XUtliPoolLib
{
	public interface IControlParticle
	{
		void RefreshRenderQueue(bool resetWidget);

		void SetWidget(GameObject go);
	}
}