blob: c90f66f188d5f8e645a0042b9d03f5051c4545ec (
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
|
using System;
using KKSG;
namespace XMainClient
{
internal class XMentorRelationOpArgs : XEventArgs
{
public MentorRelationOpArg oArg;
public MentorRelationOpRes oRes;
public XMentorRelationOpArgs()
{
this._eDefine = XEventDefine.XEvent_MentorshipRelationOperation;
}
public override void Recycle()
{
base.Recycle();
this.oArg = null;
this.oRes = null;
XEventPool<XMentorRelationOpArgs>.Recycle(this);
}
}
}
|