diff options
| author | gingerBill <bill@gingerbill.org> | 2021-02-26 15:09:32 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-02-26 15:09:32 +0000 |
| commit | 575c7ff031f67ec4c479fa1cd6e22491e2b7a79e (patch) | |
| tree | d30c6d1dc0c141937d86f4385161b79f06af30a8 /src/entity.cpp | |
| parent | ac155d90368214e2625230055573fdd17578c6e6 (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.cpp | 2 |
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, |