Files
UnrealEngine/Engine/Source/Editor/Blutility/Classes/EditorUtilityActorComponent.h
2025-05-18 13:04:45 +08:00

25 lines
473 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
/**
* Base class of any editor-only actor components
*/
#pragma once
#include "Components/ActorComponent.h"
#include "UObject/ObjectMacros.h"
#include "UObject/UObjectGlobals.h"
#include "EditorUtilityActorComponent.generated.h"
class UObject;
UCLASS(Abstract, Blueprintable, meta = (ShowWorldContextPin))
class BLUTILITY_API UEditorUtilityActorComponent : public UActorComponent
{
GENERATED_UCLASS_BODY()
};