]> git.localhorst.tv Git - gworm.git/blob - src/world/Entity.h
basic entities
[gworm.git] / src / world / Entity.h
1 #ifndef GWORM_ENTITY_H_
2 #define GWORM_ENTITY_H_
3
4 #include "../graphics/Vector.h"
5
6
7 namespace gworm {
8
9 class Entity {
10
11 public:
12         Entity();
13
14 public:
15         void Update(float dt);
16
17 public:
18         Vector<float> pos;
19         Vector<float> vel;
20         Vector<float> acc;
21
22         float mass;
23
24 };
25
26 }
27
28 #endif