17 lines
400 B
C++
Executable file
17 lines
400 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "VanityItem.h"
|
|
#include "SkinColorVanityItem.generated.h"
|
|
|
|
class UMaterialInterface;
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class USkinColorVanityItem : public UVanityItem {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
UMaterialInterface* Material;
|
|
|
|
USkinColorVanityItem();
|
|
};
|
|
|