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

15 lines
318 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
class UClothingAssetCommon;
// Base clothing actor just needs a link back to its parent asset, everything else defined by derived simulation
class FClothingActorBase
{
public:
// Link back to parent asset
UClothingAssetCommon* AssetCreatedFrom;
};