16 lines
373 B
C
16 lines
373 B
C
#pragma once
|
|
#include "ClassEnums.h"
|
|
|
|
#include "HealthSegmentStruct.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FHealthSegment : public FTableRowBase
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Health Segments")
|
|
ClassNames Class;
|
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Health Segments")
|
|
TArray<int> SegmentList;
|
|
|
|
}; |