Particle.hpp 183 B

12345678910111213
  1. #ifndef PARTICLE_PARTICLE
  2. #define PARTICLE_PARTICLE
  3. struct alignas(32) Particle
  4. {
  5. float pos_x;
  6. float pos_y;
  7. float dir_x;
  8. float dir_y;
  9. };
  10. #endif // PARTICLE_PARTICLE