#include #include #include #include #include #include #include namespace testbed { void meta_setup() { using namespace entt::literals; entt::meta_factory() .type("input listener") .data<&input_listener_component::command>("command"); entt::meta_factory() .type("position") .data<&SDL_FPoint::x>("x") .data<&SDL_FPoint::y>("y"); // bind components... } } // namespace testbed