X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fphysics%2FObject.hpp;fp=src%2Fphysics%2FObject.hpp;h=576317c3014ae362fa9c5fb3c331cef5a38b3b31;hb=d220b0348951ce210ad4ea18dbe9934dd2999a60;hp=0000000000000000000000000000000000000000;hpb=9932ee17a767b64cb52c213e133c6b91a90a8dd2;p=gong.git diff --git a/src/physics/Object.hpp b/src/physics/Object.hpp new file mode 100644 index 0000000..576317c --- /dev/null +++ b/src/physics/Object.hpp @@ -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