coeng

view src/comp.h @ 0:14e743b53289

component system test
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 04 Feb 2015 17:23:35 +0200
parents
children b0d8d454c546
line source
1 #ifndef COMP_H_
2 #define COMP_H_
4 #include <vmath/vmath.h>
6 class Component {
7 public:
8 Component() {}
9 virtual ~Component() {}
10 };
12 class CompPRS : public Component {
13 public:
14 Vector3 pos, scale;
15 Quaternion rot;
16 };
18 #endif // COMP_H_