diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2025-03-20 15:30:13 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2025-03-21 11:06:05 -0400 |
| commit | e6e7f56c9bba3b2191583c4c1d0599370d1f00c7 (patch) | |
| tree | 27476da693d9e75d920a698d57b74699f9f81c7a /src/level-types.hpp | |
| parent | 9b39b4c8eab360e087423f06ecffb694a3b98b23 (diff) | |
pke: replace PkeArray with pk_arr_t
Diffstat (limited to 'src/level-types.hpp')
| -rw-r--r-- | src/level-types.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/level-types.hpp b/src/level-types.hpp index b0abce6..4de0f76 100644 --- a/src/level-types.hpp +++ b/src/level-types.hpp @@ -1,14 +1,13 @@ #ifndef PKE_LEVEL_TYPES_HPP #define PKE_LEVEL_TYPES_HPP -#include "array.hpp" #include "pk.h" #include "camera.hpp" #include "components.hpp" TypeSafeInt_constexpr(LevelHandle, uint16_t, 0xFFFF); -struct LvlCamArr : public PkeArray<CameraHandle> { }; +struct LvlCamArr : public pk_arr_t<CameraHandle>{}; struct PkeLevel : public Entity_Base { struct pk_membucket *bkt = nullptr; |
