registry.h 236 B

12345678910111213
  1. #ifndef ENTT_COMMON_REGISTRY_H
  2. #define ENTT_COMMON_REGISTRY_H
  3. #include <entt/entity/registry.hpp>
  4. namespace test {
  5. template<typename Entity>
  6. struct basic_custom_registry: entt::basic_registry<Entity> {};
  7. } // namespace test
  8. #endif