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

17 lines
371 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Engine/DataAsset.h"
#include "CommunityGoalCategory.generated.h"
UCLASS(Blueprintable)
class UCommunityGoalCategory : public UDataAsset {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FText Title;
public:
UCommunityGoalCategory();
};