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

namespace XMainClient
{
	internal class XEntityAttrChangeEventArgs : XEventArgs
	{
		public XAttributeDefine AttrKey { get; set; }

		public double Value { get; set; }

		public double Delta { get; set; }

		public ulong CasterID { get; set; }

		public XEntity Entity { get; set; }

		public XEntityAttrChangeEventArgs()
		{
			this._eDefine = XEventDefine.XEvent_EntityAttributeChange;
			this.AttrKey = XAttributeDefine.XAttr_Invalid;
			this.Value = 0.0;
			this.Delta = 0.0;
			this.CasterID = 0UL;
			this.Entity = null;
		}

		public override void Recycle()
		{
			this.AttrKey = XAttributeDefine.XAttr_Invalid;
			this.Value = 0.0;
			this.Delta = 0.0;
			this.CasterID = 0UL;
			this.Entity = null;
			base.Recycle();
			XEventPool<XEntityAttrChangeEventArgs>.Recycle(this);
		}
	}
}