2025-04-15 22:06:41 +08:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "Blueprint/UserWidget.h"
|
|
|
|
#include "PathfindingSelectorUserWidget.generated.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
UCLASS()
|
|
|
|
class LUCKYWORLDV2_API UPathfindingSelectorUserWidget : public UUserWidget
|
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
2025-04-17 11:49:17 +08:00
|
|
|
public:
|
|
|
|
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
|
|
|
|
void BPClickSelectObjectBtn();
|
2025-04-15 22:06:41 +08:00
|
|
|
};
|