summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XHUDDoodadArgs.cs
blob: 6d97fd4b57d3f677664c3b9339b82899a5e66726 (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
using System;

namespace XMainClient
{
	internal class XHUDDoodadArgs : XEventArgs
	{
		public int count { get; set; }

		public int itemid { get; set; }

		public XHUDDoodadArgs()
		{
			this._eDefine = XEventDefine.XEvent_HUDDoodad;
		}

		public override void Recycle()
		{
			this.count = 0;
			this.itemid = 0;
			base.Recycle();
			XEventPool<XHUDDoodadArgs>.Recycle(this);
		}
	}
}