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

		public ITooltipDlg TooltipDlg
		{
			get
			{
				return DlgBase<ItemTooltipDlg, ItemTooltipDlgBehaviour>.singleton;
			}
		}

		public XBodyBag BodyBag
		{
			get
			{
				return null;
			}
		}
	}
}