1
0

types.h 164 B

1234567891011121314
  1. #ifndef ENTT_LIB_META_TYPES_H
  2. #define ENTT_LIB_META_TYPES_H
  3. struct position {
  4. int x;
  5. int y;
  6. };
  7. struct velocity {
  8. double dx;
  9. double dy;
  10. };
  11. #endif