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

23 lines
652 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "CommunityGoalStateData.generated.h"
USTRUCT(BlueprintType)
struct FCommunityGoalStateData {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
bool isGoal;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
bool isRecruitment;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float TimeLeftSeconds;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 CurrentGoalPeriodID;
FSD_API FCommunityGoalStateData();
};