coeng

view src/comp_phys.h @ 3:66d1762eb203

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 05 Feb 2015 23:20:20 +0200
parents 14e743b53289
children
line source
1 #ifndef COMP_PHYS_H_
2 #define COMP_PHYS_H_
4 #include <vmath/vmath.h>
5 #include "comp.h"
7 class CompRigid : public Component {
8 public:
9 float mass, elast, friction;
10 Vector3 pos, vel;
12 CompRigid();
14 void update();
15 };
17 #endif // COMP_PHYS_H_