diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/UI/TooltipParam.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/UI/TooltipParam.cs | 37 |
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;
+ }
+ }
+}
|