summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Utility/XEmblemDescription.cs
blob: a67956104eacce61519fb13d1a7e5478292c1f37 (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 XEmblemDescription : IXItemDescription
	{
		public XItemDrawer ItemDrawer
		{
			get
			{
				return XSingleton<XItemDrawerMgr>.singleton.emblemItemDrawer;
			}
		}

		public XBodyBag BodyBag
		{
			get
			{
				return XSingleton<XGame>.singleton.Doc.XBagDoc.EmblemBag;
			}
		}

		public ITooltipDlg TooltipDlg
		{
			get
			{
				return DlgBase<EmblemTooltipDlg, EmblemTooltipDlgBehaviour>.singleton;
			}
		}
	}
}