summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XEnmityEventArgs.cs
blob: 7ffb784e7351f4ca8ebd5c8b80b9a030ca7a3507 (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
39
40
41
42
using System;

namespace XMainClient
{
	internal class XEnmityEventArgs : XEventArgs
	{
		public XObject Starter
		{
			get
			{
				return this._starter;
			}
			set
			{
				this._starter = value;
			}
		}

		public XAttributeDefine AttrKey { get; set; }

		public double DeltaValue { get; set; }

		public uint SkillId { get; set; }

		protected XObject _starter = null;

		public XEnmityEventArgs()
		{
			this._eDefine = XEventDefine.XEvent_Enmity;
			this.AttrKey = XAttributeDefine.XAttr_Invalid;
		}

		public override void Recycle()
		{
			this.AttrKey = XAttributeDefine.XAttr_Invalid;
			this.DeltaValue = 0.0;
			this._starter = null;
			base.Recycle();
			XEventPool<XEnmityEventArgs>.Recycle(this);
		}
	}
}