summaryrefslogtreecommitdiff
path: root/Client/Assembly-CSharp/InnerNet/SpawnFlags.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assembly-CSharp/InnerNet/SpawnFlags.cs')
-rw-r--r--Client/Assembly-CSharp/InnerNet/SpawnFlags.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Client/Assembly-CSharp/InnerNet/SpawnFlags.cs b/Client/Assembly-CSharp/InnerNet/SpawnFlags.cs
new file mode 100644
index 0000000..644e4e9
--- /dev/null
+++ b/Client/Assembly-CSharp/InnerNet/SpawnFlags.cs
@@ -0,0 +1,11 @@
+using System;
+
+namespace InnerNet
+{
+ [Flags]
+ public enum SpawnFlags : byte
+ {
+ None = 0,
+ IsClientCharacter = 1
+ }
+}