16 lines
347 B
C++
16 lines
347 B
C++
#pragma once
|
|
|
|
#include "UIFunctionLibrary.generated.h"
|
|
|
|
class UPW_UIController;
|
|
|
|
UCLASS(BlueprintType)
|
|
class UUIFunctionLibrary : public UBlueprintFunctionLibrary
|
|
{
|
|
GENERATED_BODY()
|
|
public:
|
|
UFUNCTION(BlueprintCallable, Category = "UIFunctionLibrary")
|
|
static UPW_UIController* GetUIController(const UObject* Object, const FName& Name);
|
|
|
|
};
|