summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/UILib/IXUILongPress.cs
blob: 74e37d4b991385ce0b04dba2f72d4a575577af66 (plain)
1
2
3
4
5
6
7
8
9
using System;

namespace UILib
{
	public interface IXUILongPress : IXUIObject
	{
		void RegisterSpriteLongPressEventHandler(SpriteClickEventHandler eventHandler);
	}
}