dd_vec2.h 78 B

123456789
  1. #ifndef DD_VEC2_H
  2. #define DD_VEC2_H
  3. struct dd_vec2 {
  4. float x, y;
  5. };
  6. #endif