23 lines
512 B
C++
23 lines
512 B
C++
// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
|
|
// SPDX-FileCopyrightText: 2023 Jorrit Rouwe
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <Tests/Test.h>
|
|
|
|
class SoftBodyPressureTest : public Test
|
|
{
|
|
public:
|
|
JPH_DECLARE_RTTI_VIRTUAL(JPH_NO_EXPORT, SoftBodyPressureTest)
|
|
|
|
// Description of the test
|
|
virtual const char *GetDescription() const override
|
|
{
|
|
return "Tests soft bodies with various values for internal pressure.";
|
|
}
|
|
|
|
// See: Test
|
|
virtual void Initialize() override;
|
|
};
|