diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2024-01-10 19:24:12 -0500 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2024-01-10 19:24:12 -0500 |
| commit | f07294ca65143fac8b1b426d1854212403721226 (patch) | |
| tree | 2edeb8f2c9beea1cbb065f69910d53957ebda0ce /src/level-types.hpp | |
| parent | 294c85f91ac5b2ff9e4ad3d99588ed0d1a72e6b7 (diff) | |
checkpoint - handle breaking ECS changes - compiles
Diffstat (limited to 'src/level-types.hpp')
| -rw-r--r-- | src/level-types.hpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/level-types.hpp b/src/level-types.hpp index 64eef32..0809572 100644 --- a/src/level-types.hpp +++ b/src/level-types.hpp @@ -9,14 +9,12 @@ TypeSafeInt_Const_Expr(LevelHandle, uint16_t, 0xFFFF); -struct LvlEntHandleArr : public PkeArray<EntityHandle> { }; struct LvlCamArr : public PkeArray<CameraHandle> { }; -struct PkeLevel { +struct PkeLevel : public Entity_Base { MemBucket *bkt = nullptr; char name[16] = {}; - LevelHandle handle = LevelHandle_MAX; - LvlEntHandleArr wrappingEntities; + LevelHandle levelHandle = LevelHandle_MAX; LvlCamArr cameras; }; |
