18 lines
389 B
C++
18 lines
389 B
C++
// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
|
|
// SPDX-FileCopyrightText: 2022 Jorrit Rouwe
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <Tests/Test.h>
|
|
|
|
// Demonstrates the pulley constraint
|
|
class PulleyConstraintTest : public Test
|
|
{
|
|
public:
|
|
JPH_DECLARE_RTTI_VIRTUAL(JPH_NO_EXPORT, PulleyConstraintTest)
|
|
|
|
// See: Test
|
|
virtual void Initialize() override;
|
|
};
|