blob: e577f3674cf41cd13e0bc6c0d73fe549c152be7e (
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 XartifactDescription : IXItemDescription
{
public XItemDrawer ItemDrawer
{
get
{
return XSingleton<XItemDrawerMgr>.singleton.normalItemDrawer;
}
}
public XBodyBag BodyBag
{
get
{
return XSingleton<XGame>.singleton.Doc.XBagDoc.ArtifactBag;
}
}
public ITooltipDlg TooltipDlg
{
get
{
return DlgBase<ArtifactToolTipDlg, ArtifactTooltipDlgBehaviour>.singleton;
}
}
}
}
|