component.h 182 B

1234567891011121314
  1. #include <entt/core/type_traits.hpp>
  2. struct position {
  3. int x;
  4. int y;
  5. };
  6. struct velocity {
  7. int dx;
  8. int dy;
  9. };
  10. ENTT_SHARED_TYPE(position)
  11. ENTT_SHARED_TYPE(velocity)