types.h 289 B

12345678910
  1. #ifndef ENTT_LIB_VIEW_TYPE_H
  2. #define ENTT_LIB_VIEW_TYPE_H
  3. #include <entt/entity/storage.hpp>
  4. #include <entt/entity/view.hpp>
  5. #include "../../common/empty.h"
  6. using view_type = entt::basic_view<entt::get_t<entt::storage<test::empty>>, entt::exclude_t<entt::storage<test::empty>>>;
  7. #endif