summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Utility/XEmblemDescription.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/Utility/XEmblemDescription.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/Utility/XEmblemDescription.cs34
1 files changed, 34 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/Utility/XEmblemDescription.cs b/Client/Assets/Scripts/XMainClient/Utility/XEmblemDescription.cs
new file mode 100644
index 00000000..a6795610
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/Utility/XEmblemDescription.cs
@@ -0,0 +1,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;
+ }
+ }
+ }
+}