PhysicsUpdateContext.cpp 296 B

12345678910111213141516
  1. // SPDX-FileCopyrightText: 2021 Jorrit Rouwe
  2. // SPDX-License-Identifier: MIT
  3. #include <Jolt.h>
  4. #include <Physics/PhysicsUpdateContext.h>
  5. namespace JPH {
  6. PhysicsUpdateContext::~PhysicsUpdateContext()
  7. {
  8. JPH_ASSERT(mBodyPairs == nullptr);
  9. JPH_ASSERT(mActiveConstraints == nullptr);
  10. }
  11. } // JPH