diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XReconnectedEventArgs.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XReconnectedEventArgs.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XReconnectedEventArgs.cs b/Client/Assets/Scripts/XMainClient/XReconnectedEventArgs.cs new file mode 100644 index 00000000..8c59f561 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XReconnectedEventArgs.cs @@ -0,0 +1,23 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class XReconnectedEventArgs : XEventArgs
+ {
+ public RoleAllInfo PlayerInfo = null;
+
+ public UnitAppearance PlayUnit = null;
+
+ public XReconnectedEventArgs()
+ {
+ this._eDefine = XEventDefine.XEvent_OnReconnected;
+ }
+
+ public override void Recycle()
+ {
+ base.Recycle();
+ XEventPool<XReconnectedEventArgs>.Recycle(this);
+ }
+ }
+}
|