Space Plunder
Loading...
Searching...
No Matches
HelperWidget.h
Go to the documentation of this file.
1// Designed by Hitman's Store, 2023
2
3#pragma once
4
5#include "CoreMinimal.h"
7#include "Blueprint/UserWidget.h"
8#include "HelperWidget.generated.h"
9
10UCLASS()
11class RECOILANIMATION_API UHelperWidget : public UUserWidget
12{
13 GENERATED_BODY()
14
15public:
16 void SetComponent(URecoilAnimationComponent* RecAnimComp);
17
18 UFUNCTION(BlueprintImplementableEvent, Category = "Update UI Values")
19 void UpdateValues();
20
21protected:
22 UPROPERTY(BlueprintReadOnly, Category = "Base")
23 URecoilAnimationComponent* AnimationComponent = nullptr;
24
25 UPROPERTY(BlueprintReadWrite, Category = "Display")
26 bool bAdvancedDisplay = true;
27};
UCLASS(Blueprintable, BlueprintType, ClassGroup=(BucciGames), meta=(BlueprintSpawnableComponent)) class CHATSYSTEM_API UChatSystemComponent
Definition ChatSystemComponent.h:13
Definition HelperWidget.h:12