entity.h 196 B

12345678910111213
  1. #ifndef ENTT_COMMON_ENTITY_H
  2. #define ENTT_COMMON_ENTITY_H
  3. #include <cstdint>
  4. namespace test {
  5. enum entity : std::uint32_t {};
  6. enum other_entity : std::uint32_t {};
  7. } // namespace test
  8. #endif