| 4 | #include "PhysicsSolver.hpp" |
| 5 | |
| 6 | RavEngine::PhysicsMaterial::PhysicsMaterial(double sf, double df, double r) |
| 7 | { |
| 8 | mat = PhysicsSolver::phys->createMaterial(sf, df, r); |
| 9 | } |
| 10 | |
| 11 | RavEngine::PhysicsMaterial::~PhysicsMaterial() |
| 12 | { |
nothing calls this directly
no test coverage detected