Files
UEProject/Source/ThisWillWork/MyCustomActorFinder.h
2026-02-01 20:19:37 -07:00

17 lines
402 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 THISWILLWORK_API AMyCustomActorFinder : public AActor
{
GENERATED_BODY()
public: UFUNCTION(BlueprintCallable, Category = "Utilities") AActor* FindActorByName(const FString& ActorName);
};