summaryrefslogtreecommitdiff
path: root/src/entities.hpp
blob: 005c83cfe7177b270fdc1fbc9dbb851b5c08e08f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef PKE_ENTITIES_HPP
#define PKE_ENTITIES_HPP

#include "vendor/cgltf-include.hpp"
#include "ecs.hpp"
#include "components.hpp"
#include "asset-manager.hpp"
#include "memory.hpp"
#include "window.hpp"

struct EntityType {
	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 */