summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/ITooltipDlg.cs
blob: e3d9aa29d93994287d1dc59ed6d945fbf840339b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using UILib;

namespace XMainClient.UI
{
	internal interface ITooltipDlg
	{
		XItemSelector ItemSelector { get; }

		IXUISprite ShowToolTip(XItem mainItem, XItem compareItem, bool _bShowButtons, uint prof);

		void SetPosition(IXUISprite clickIcon);
	}
}