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