meta_traits.h 276 B

123456789101112131415161718
  1. #ifndef ENTT_COMMON_META_TRAITS_H
  2. #define ENTT_COMMON_META_TRAITS_H
  3. #include <entt/core/enum.hpp>
  4. namespace test {
  5. enum class meta_traits {
  6. none = 0x0000,
  7. one = 0x0001,
  8. two = 0x0002,
  9. three = 0x0100,
  10. _entt_enum_as_bitmask
  11. };
  12. } // namespace test
  13. #endif