15 lines
198 B
C++
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
|