From 9b4c920d1fa10690a32afb48b44b20136ed12a7e Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Wed, 8 Nov 2023 12:37:54 +0100 Subject: [PATCH] test: shared custom_entity type --- test/entt/common/custom_entity.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/entt/common/custom_entity.h diff --git a/test/entt/common/custom_entity.h b/test/entt/common/custom_entity.h new file mode 100644 index 000000000..4f55076e8 --- /dev/null +++ b/test/entt/common/custom_entity.h @@ -0,0 +1,12 @@ +#ifndef ENTT_COMMON_CUSTOM_ENTITY_HPP +#define ENTT_COMMON_CUSTOM_ENTITY_HPP + +#include + +namespace test { + +enum custom_entity : std::uint32_t {}; + +} // namespace test + +#endif