summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/TooltipParam.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-01-25 14:28:30 +0800
committerchai <chaifix@163.com>2021-01-25 14:28:30 +0800
commit6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch)
tree7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/UI/TooltipParam.cs
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/UI/TooltipParam.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/UI/TooltipParam.cs37
1 files changed, 37 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/UI/TooltipParam.cs b/Client/Assets/Scripts/XMainClient/UI/TooltipParam.cs
new file mode 100644
index 00000000..4c694f17
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/UI/TooltipParam.cs
@@ -0,0 +1,37 @@
+using System;
+using System.Collections.Generic;
+using XUtliPoolLib;
+
+namespace XMainClient.UI
+{
+ internal class TooltipParam : XSingleton<TooltipParam>
+ {
+ public XBodyBag BodyBag = null;
+
+ public List<uint> FashionOnBody;
+
+ public bool bEquiped = false;
+
+ public bool bBinded = false;
+
+ public bool bShowPutInBtn = false;
+
+ public bool bShowTakeOutBtn = false;
+
+ public XAttributes mainAttributes = null;
+
+ public XAttributes compareAttributes = null;
+
+ public void Reset()
+ {
+ this.BodyBag = null;
+ this.bEquiped = false;
+ this.bBinded = false;
+ this.bShowPutInBtn = false;
+ this.bShowTakeOutBtn = false;
+ this.mainAttributes = null;
+ this.compareAttributes = null;
+ this.FashionOnBody = null;
+ }
+ }
+}