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