diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/WeddingState.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/WeddingState.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/WeddingState.cs b/Client/Assets/Scripts/XMainClient/KKSG/WeddingState.cs new file mode 100644 index 00000000..5745eb2d --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/WeddingState.cs @@ -0,0 +1,14 @@ +using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "WeddingState")]
+ public enum WeddingState
+ {
+ [ProtoEnum(Name = "WeddingState_Prepare", Value = 1)]
+ WeddingState_Prepare = 1,
+ [ProtoEnum(Name = "WeddingState_Running", Value = 2)]
+ WeddingState_Running
+ }
+}
|