Verlet/common/particle.hpp
2023-02-07 08:41:36 +00:00

15 lines
198 B
C++

#ifndef VERLET_PARTICLE_HPP
#define VERLET_PARTICLE_HPP
#include "definitions.hpp"
class Particle {
public:
float mass;
vec2 position;
vec2 velocity;
};
#endif //VERLET_PARTICLE_HPP