From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Assets/Scripts/XMainClient/UI/TooltipParam.cs | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/UI/TooltipParam.cs (limited to 'Client/Assets/Scripts/XMainClient/UI/TooltipParam.cs') 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 + { + public XBodyBag BodyBag = null; + + public List 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; + } + } +} -- cgit v1.1-26-g67d0