DRG-Femboy-Voice/Source/FSD/Public/GemResourceCreator.h
2025-04-15 12:39:31 -07:00

25 lines
655 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Engine/DataAsset.h"
#include "GemResourceCreator.generated.h"
class UGemResourceData;
UCLASS(Abstract, Blueprintable, EditInlineNew)
class UGemResourceCreator : public UDataAsset {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
UGemResourceData* ResourceData;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
bool CheckIfFreeSpaceAbove;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 SearchSize;
public:
UGemResourceCreator();
};