2024-04-14 18:51:14 -07:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "GasaCommon.h"
|
|
|
|
|
#include "WidgetController.generated.h"
|
|
|
|
|
|
|
|
|
|
UCLASS(BlueprintType)
|
2024-04-21 06:51:51 -07:00
|
|
|
|
class GASA_API UWidgetController : public UObject
|
2024-04-14 18:51:14 -07:00
|
|
|
|
{
|
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
UPROPERTY(BlueprintReadOnly, Category="Player")
|
|
|
|
|
TObjectPtr<APlayerController> Controller;
|
|
|
|
|
|
|
|
|
|
UPROPERTY(BlueprintReadOnly, Category="Player")
|
|
|
|
|
TObjectPtr<APlayerState> PlayerState;
|
|
|
|
|
|
|
|
|
|
UPROPERTY(BlueprintReadOnly, Category="Player")
|
|
|
|
|
TObjectPtr<UAbilitySystemComponent> AbilitySystem;
|
|
|
|
|
|
|
|
|
|
UPROPERTY(BlueprintReadOnly, Category="Player")
|
|
|
|
|
TObjectPtr<UAttributeSet> Attributes;
|
|
|
|
|
};
|