blob: e1ba3153bd9550904ac8caf9e803e2efab7c5ea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using XUtliPoolLib;
namespace XMainClient
{
internal class XManipulationOnEventArgs : XEventArgs
{
public XManipulationData data = null;
public XManipulationOnEventArgs()
{
this._eDefine = XEventDefine.XEvent_Manipulation_On;
}
public override void Recycle()
{
base.Recycle();
this.data = null;
XEventPool<XManipulationOnEventArgs>.Recycle(this);
}
}
}
|