summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/EntityCategory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/EntityCategory.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/EntityCategory.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/EntityCategory.cs b/Client/Assets/Scripts/XMainClient/KKSG/EntityCategory.cs
new file mode 100644
index 00000000..368ea230
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/EntityCategory.cs
@@ -0,0 +1,20 @@
+using System;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "EntityCategory")]
+ public enum EntityCategory
+ {
+ [ProtoEnum(Name = "Category_Role", Value = 0)]
+ Category_Role,
+ [ProtoEnum(Name = "Category_Enemy", Value = 1)]
+ Category_Enemy,
+ [ProtoEnum(Name = "Category_Neutral", Value = 2)]
+ Category_Neutral,
+ [ProtoEnum(Name = "Category_DummyRole", Value = 3)]
+ Category_DummyRole,
+ [ProtoEnum(Name = "Category_Others", Value = 4)]
+ Category_Others
+ }
+}