summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Guild/XGuildMemberListEventArgs.cs
blob: 8434546b4985a0a2feb26fffa94094609a287c41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

namespace XMainClient
{
	internal class XGuildMemberListEventArgs : XEventArgs
	{
		public XGuildMemberListEventArgs()
		{
			this._eDefine = XEventDefine.XEvent_GuildMemberList;
		}

		public override void Recycle()
		{
			base.Recycle();
			XEventPool<XGuildMemberListEventArgs>.Recycle(this);
		}
	}
}