1 #ifndef GONG_PHYSICS_SIMULATION_HPP_
2 #define GONG_PHYSICS_SIMULATION_HPP_
4 #include "../graphics/glm.hpp"
20 void Update(float dt);
23 void Integrate(State &, float dt);
24 Derivative Evaluate(const State &, float dt, const Derivative &);
27 std::vector<Object *> objects;
28 std::vector<Contact> contacts;