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