Files
entt/test/lib/locator/plugin/userdata.h
2024-02-14 09:52:07 +01:00

13 lines
266 B
C

#ifndef ENTT_LIB_LOCATOR_PLUGIN_USERDATA_H
#define ENTT_LIB_LOCATOR_PLUGIN_USERDATA_H
#include <common/boxed_type.h>
#include <entt/locator/locator.hpp>
struct userdata {
typename entt::locator<test::boxed_int>::node_type handle{};
int value{};
};
#endif