blob: cfd1c0b8521fb4320a7fecb87adf010d57e3e092 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
using System;
using XMainClient.UI;
using XMainClient.UI.UICommon;
using XUtliPoolLib;
namespace XMainClient.Utility
{
internal class XFashionHairDescription : IXItemDescription
{
public XItemDrawer ItemDrawer
{
get
{
return XSingleton<XItemDrawerMgr>.singleton.normalItemDrawer;
}
}
public ITooltipDlg TooltipDlg
{
get
{
return DlgBase<FashionHairToolTipDlg, FashionHairToolTipBehaviour>.singleton;
}
}
public XBodyBag BodyBag
{
get
{
return null;
}
}
}
}
|