summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Guild/XGuildInfoChange.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/Guild/XGuildInfoChange.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/Guild/XGuildInfoChange.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/Guild/XGuildInfoChange.cs b/Client/Assets/Scripts/XMainClient/Guild/XGuildInfoChange.cs
new file mode 100644
index 00000000..e294f2d6
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/Guild/XGuildInfoChange.cs
@@ -0,0 +1,18 @@
+using System;
+
+namespace XMainClient
+{
+ internal class XGuildInfoChange : XEventArgs
+ {
+ public XGuildInfoChange()
+ {
+ this._eDefine = XEventDefine.XEvent_GuildInfoChange;
+ }
+
+ public override void Recycle()
+ {
+ base.Recycle();
+ XEventPool<XGuildInfoChange>.Recycle(this);
+ }
+ }
+}