blob: fa9da88a88ebb52ab4ebe72fceeaf32e8b1f063d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using XMainClient.UI;
namespace XMainClient.Utility
{
internal interface IXItemDescription
{
XItemDrawer ItemDrawer { get; }
XBodyBag BodyBag { get; }
ITooltipDlg TooltipDlg { get; }
}
}
|