diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XHighlightEventArgs.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XHighlightEventArgs.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XHighlightEventArgs.cs b/Client/Assets/Scripts/XMainClient/XHighlightEventArgs.cs new file mode 100644 index 00000000..bb2152af --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XHighlightEventArgs.cs @@ -0,0 +1,20 @@ +using System;
+
+namespace XMainClient
+{
+ internal class XHighlightEventArgs : XEventArgs
+ {
+ public bool Enabled = false;
+
+ public XHighlightEventArgs()
+ {
+ this._eDefine = XEventDefine.XEvent_Highlight;
+ }
+
+ public override void Recycle()
+ {
+ base.Recycle();
+ XEventPool<XHighlightEventArgs>.Recycle(this);
+ }
+ }
+}
|