#ifndef PKE_LEVEL_TYPES_HPP #define PKE_LEVEL_TYPES_HPP #include "array.hpp" #include "macros.hpp" #include "memory-type-defs.hpp" #include "camera.hpp" #include "components.hpp" TypeSafeInt_Const_Expr(LevelHandle, uint16_t, 0xFFFF); struct LvlEntHandleArr : public PkeArray { }; struct LvlCamArr : public PkeArray { }; struct PkeLevel { MemBucket *bkt = nullptr; char name[16] = {}; LevelHandle handle = LevelHandle_MAX; LvlEntHandleArr wrappingEntities; LvlCamArr cameras; }; #endif /* PKE_LEVEL_TYPES_HPP */