16 lines
352 B
C++
Executable file
16 lines
352 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "CoilMaterial.generated.h"
|
|
|
|
class UMaterialInstanceDynamic;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FCoilMaterial {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
|
|
UMaterialInstanceDynamic* Material;
|
|
|
|
FSD_API FCoilMaterial();
|
|
};
|
|
|