summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/TooltipParam.cs
blob: 4c694f170107097d2aa56399650b229e73dfb0bd (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
35
36
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;
		}
	}
}