]> git.localhorst.tv Git - gong.git/blobdiff - src/physics/Object.hpp
simple physics simulation
[gong.git] / src / physics / Object.hpp
diff --git a/src/physics/Object.hpp b/src/physics/Object.hpp
new file mode 100644 (file)
index 0000000..576317c
--- /dev/null
@@ -0,0 +1,21 @@
+#ifndef GONG_PHYSICS_OBJECT_HPP_
+#define GONG_PHYSICS_OBJECT_HPP_
+
+#include "State.hpp"
+#include "../geometry/primitive.hpp"
+
+
+namespace gong {
+namespace physics {
+
+struct Object {
+
+       State state;
+       geometry::AABB bounds;
+
+};
+
+}
+}
+
+#endif