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