Files
Aura-TopDownRPG-GAS/Source/Aura/Public/UI/Widget/DamageTextComponent.h

21 lines
391 B
C
Raw Permalink Normal View History

// Copyright Echo Devgroup
#pragma once
#include "CoreMinimal.h"
#include "Components/WidgetComponent.h"
#include "DamageTextComponent.generated.h"
/**
*
*/
UCLASS()
class AURA_API UDamageTextComponent : public UWidgetComponent
{
GENERATED_BODY()
public:
UFUNCTION(BlueprintImplementableEvent, BlueprintCallable)
void SetDamageText(float Damage,bool bCritical, bool bBlocked);
};