custom_entity.h 179 B

123456789101112
  1. #ifndef ENTT_COMMON_CUSTOM_ENTITY_H
  2. #define ENTT_COMMON_CUSTOM_ENTITY_H
  3. #include <cstdint>
  4. namespace test {
  5. enum custom_entity : std::uint32_t {};
  6. } // namespace test
  7. #endif