diff options
Diffstat (limited to 'src/entity.cpp')
| -rw-r--r-- | src/entity.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/entity.cpp b/src/entity.cpp index bbea68e8b..c433d98cb 100644 --- a/src/entity.cpp +++ b/src/entity.cpp @@ -51,8 +51,10 @@ enum EntityFlag { EntityFlag_ImplicitReference = 1<<17, // NOTE(bill): equivalent to `const &` in C++ - EntityFlag_CVarArg = 1<<20, - EntityFlag_AutoCast = 1<<21, + EntityFlag_SoaPtrField = 1<<19, // to allow s.x[0] where `s.x` is a pointer rather than a slice + + EntityFlag_CVarArg = 1<<21, + EntityFlag_AutoCast = 1<<22, }; enum EntityState { |