Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

30 lines
1.1 KiB
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "ClothingSimulationInterface.h"
//==============================================================================
// IClotingSimulationContext
//==============================================================================
IClothingSimulationContext::IClothingSimulationContext() = default;
IClothingSimulationContext::~IClothingSimulationContext() = default;
//==============================================================================
// IClothingSimulationInterface
//==============================================================================
IClothingSimulationInterface::IClothingSimulationInterface() = default;
IClothingSimulationInterface::~IClothingSimulationInterface() = default;
//==============================================================================
// IClothingSimulation
//==============================================================================
IClothingSimulation::IClothingSimulation()
{
PRAGMA_DISABLE_DEPRECATION_WARNINGS
bIsLegacyInterface = true;
PRAGMA_ENABLE_DEPRECATION_WARNINGS
}
IClothingSimulation::~IClothingSimulation() = default;