mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
270 B
C
15 lines
270 B
C
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortHitPointModificationReason.generated.h"
|
|
|
|
UENUM(BlueprintType)
|
|
enum class EFortHitPointModificationReason : uint8 {
|
|
Invalid,
|
|
InitalSet,
|
|
AutoRegen,
|
|
ItemRegen,
|
|
DamageOverTime,
|
|
DamageReceived,
|
|
};
|
|
|