userdata.h 266 B

123456789101112
  1. #ifndef ENTT_LIB_LOCATOR_PLUGIN_USERDATA_H
  2. #define ENTT_LIB_LOCATOR_PLUGIN_USERDATA_H
  3. #include <common/boxed_type.h>
  4. #include <entt/locator/locator.hpp>
  5. struct userdata {
  6. typename entt::locator<test::boxed_int>::node_type handle{};
  7. int value{};
  8. };
  9. #endif