summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/StartRollNtfData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/StartRollNtfData.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/StartRollNtfData.cs34
1 files changed, 34 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/StartRollNtfData.cs b/Client/Assets/Scripts/XMainClient/KKSG/StartRollNtfData.cs
new file mode 100644
index 00000000..8365f99a
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/StartRollNtfData.cs
@@ -0,0 +1,34 @@
+using System;
+using System.ComponentModel;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "StartRollNtfData")]
+ [Serializable]
+ public class StartRollNtfData : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "info", DataFormat = DataFormat.Default)]
+ [DefaultValue(null)]
+ public EnemyDoodadInfo info
+ {
+ get
+ {
+ return this._info;
+ }
+ set
+ {
+ this._info = value;
+ }
+ }
+
+ private EnemyDoodadInfo _info = null;
+
+ private IExtension extensionObject;
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}