1
0

meta_traits.h 305 B

12345678910111213141516171819
  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 : std::uint8_t {
  6. none = 0x00,
  7. one = 0x01,
  8. two = 0x02,
  9. three = 0x04,
  10. all = 0xFF,
  11. _entt_enum_as_bitmask = all
  12. };
  13. } // namespace test
  14. #endif