aboutsummaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-02-26 15:09:32 +0000
committergingerBill <bill@gingerbill.org>2021-02-26 15:09:32 +0000
commit575c7ff031f67ec4c479fa1cd6e22491e2b7a79e (patch)
treed30c6d1dc0c141937d86f4385161b79f06af30a8 /src/entity.cpp
parentac155d90368214e2625230055573fdd17578c6e6 (diff)
Patch issue with minimum dependency system and how it interacts with para poly procedures
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index 1712c7f98..7951cf614 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -57,6 +57,8 @@ enum EntityFlag : u32 {
EntityFlag_SoaPtrField = 1<<19, // to allow s.x[0] where `s.x` is a pointer rather than a slice
+ EntityFlag_ProcBodyChecked = 1<<20,
+
EntityFlag_CVarArg = 1<<21,
EntityFlag_AutoCast = 1<<22,