// // Created by Иван Ильин on 10.03.2021. // #ifndef ENGINE_SOLVER_H #define ENGINE_SOLVER_H #include "RigidBody.h" class Solver { public: static void solveCollision(const std::shared_ptr& obj1, const std::shared_ptr& obj2, const CollisionPoint& collision); }; #endif //INC_3DZAVR_SOLVER_H