coeng

view src/comp_phys.h @ 4:49a2e70ac455

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 10 Feb 2015 17:21:30 +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_