]> git.localhorst.tv Git - gong.git/blob - src/physics/Object.hpp
simple physics simulation
[gong.git] / src / physics / Object.hpp
1 #ifndef GONG_PHYSICS_OBJECT_HPP_
2 #define GONG_PHYSICS_OBJECT_HPP_
3
4 #include "State.hpp"
5 #include "../geometry/primitive.hpp"
6
7
8 namespace gong {
9 namespace physics {
10
11 struct Object {
12
13         State state;
14         geometry::AABB bounds;
15
16 };
17
18 }
19 }
20
21 #endif