component.h 153 B

1234567891011
  1. #include <entt/core/type_traits.hpp>
  2. ENTT_SHARED_STRUCT(position, {
  3. int x;
  4. int y;
  5. })
  6. ENTT_SHARED_STRUCT(velocity, {
  7. int dx;
  8. int dy;
  9. })