Files
axyz/include/Engine/Core/ComponentInfo.h
T
2015-12-01 17:04:03 +01:00

15 lines
272 B
C++

#include "../Common.h"
struct ComponentInfo
{
struct Meta_t
{
std::string Annotation;
int Allocation = 0;
};
std::string Name;
std::unordered_map<std::string, std::string> FieldTypes;
std::unordered_map<std::string, unsigned int> FieldOffsets;
Meta_t Meta;
};