GearConstraintTest.h 323 B

12345678910111213141516
  1. // SPDX-FileCopyrightText: 2021 Jorrit Rouwe
  2. // SPDX-License-Identifier: MIT
  3. #pragma once
  4. #include <Tests/Test.h>
  5. // This test demonstrates the use of a gear constraint
  6. class GearConstraintTest : public Test
  7. {
  8. public:
  9. JPH_DECLARE_RTTI_VIRTUAL(GearConstraintTest)
  10. // See: Test
  11. virtual void Initialize() override;
  12. };