summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/XDramaOperateList.cs
blob: fe16f82734906f0360ef82cd95510ef491a728d3 (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
using System;
using UILib;

namespace XMainClient.UI
{
	internal class XDramaOperateList : XDataBase
	{
		public string Name;

		public SpriteClickEventHandler ClickEvent;

		public float TargetTime;

		public string TimeNote;

		public ulong RID;

		public override void Init()
		{
			base.Init();
			this.Name = null;
			this.ClickEvent = null;
			this.TargetTime = 0f;
			this.TimeNote = null;
			this.RID = 0UL;
		}

		public override void Recycle()
		{
			base.Recycle();
			XDataPool<XDramaOperateList>.Recycle(this);
		}
	}
}