diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-09-08 17:01:22 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-09-08 17:01:22 -0400 |
| commit | 2003fa27db17094f472cbad5b0d3ff42aea9df9c (patch) | |
| tree | 15726b942f6cf30f57858bdf571c3080d752aa07 /src/entities.hpp | |
| parent | 08cdf72330276a4b4883fea41c3ada1087800a41 (diff) | |
EntityType cleanup
Diffstat (limited to 'src/entities.hpp')
| -rw-r--r-- | src/entities.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/entities.hpp b/src/entities.hpp index 5e80616..005c83c 100644 --- a/src/entities.hpp +++ b/src/entities.hpp @@ -9,13 +9,14 @@ #include "window.hpp" struct EntityType { - char *modelFile = nullptr; - char entityTypeCode[16] = {'\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0','\0'}; + const char *modelFile = nullptr; + const char *entityTypeCode = nullptr; EntityHandle entityHandle = EntityHandle_MAX; VkPipelineLayoutCreateInfo *vkPipelineLayoutCreateInfo = nullptr; }; void EntityType_Init(); void EntityType_Load(EntityType et); +void EntityType_Teardown(); #endif /* PKE_ENTITIES_HPP */ |
