Files
UEProject/Source/GameIdeaV5_5/MyCustomActorFinder.h
2025-11-05 20:09:43 -07:00

17 lines
404 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "MyCustomActorFinder.generated.h"
UCLASS()
class GAMEIDEAV5_5_API AMyCustomActorFinder : public AActor
{
GENERATED_BODY()
public: UFUNCTION(BlueprintCallable, Category = "Utilities") AActor* FindActorByName(const FString& ActorName);
};