mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 12:13:25 +00:00
11 lines
245 B
C
11 lines
245 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortMaterialProgressBarSectionOverflowBehavior.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EFortMaterialProgressBarSectionOverflowBehavior : uint8 {
|
|
PreserveValues,
|
|
ReverseCollapse,
|
|
};
|
|
|