userdata.h 288 B

12345678910111213
  1. #ifndef ENTT_LIB_META_PLUGIN_USERDATA_H
  2. #define ENTT_LIB_META_PLUGIN_USERDATA_H
  3. #include <entt/locator/locator.hpp>
  4. #include <entt/meta/context.hpp>
  5. #include <entt/meta/meta.hpp>
  6. struct userdata {
  7. entt::locator<entt::meta_ctx>::node_type ctx{};
  8. entt::meta_any any{};
  9. };
  10. #endif