This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "glm/glm.hpp" | |
#include "entt/meta/meta.hpp" | |
#include <unordered_map> | |
// Components that we want to reflect for a hypothetical game. | |
struct LocalTransform | |
{ | |
glm::vec3 position; | |
glm::quat rotation; |
OlderNewer