diff options
Diffstat (limited to 'src/components.hpp')
| -rw-r--r-- | src/components.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components.hpp b/src/components.hpp index b587fcc..326b0e6 100644 --- a/src/components.hpp +++ b/src/components.hpp @@ -16,10 +16,14 @@ const uint32_t ECS_UNSET_VAL_32 = 0xFFFFFFFF; struct EntityHandle : public pk_handle { }; struct GrBindsHandle : public pk_handle { }; struct InstanceHandle : public pk_handle { }; +struct SceneHandle : public pk_handle { }; +struct LevelHandle : public pk_handle { }; constexpr EntityHandle EntityHandle_MAX = EntityHandle{ pk_handle_MAX_constexpr }; constexpr GrBindsHandle GrBindsHandle_MAX = GrBindsHandle{ pk_handle_MAX_constexpr }; constexpr InstanceHandle InstanceHandle_MAX = InstanceHandle{ pk_handle_MAX_constexpr }; +constexpr SceneHandle SceneHandle_MAX = SceneHandle{ pk_handle_MAX_constexpr }; +constexpr LevelHandle LevelHandle_MAX = LevelHandle{ pk_handle_MAX_constexpr }; struct Entity_Base { EntityHandle handle = EntityHandle_MAX; |
