Files
UnrealEngine/Engine/Source/Runtime/UMG/Public/Blueprint/UserWidgetBlueprint.h
2025-05-18 13:04:45 +08:00

17 lines
369 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Engine/Blueprint.h"
#include "UserWidgetBlueprint.generated.h"
UCLASS(Abstract, MinimalAPI)
class UUserWidgetBlueprint : public UBlueprint
{
GENERATED_BODY()
public:
/** Does the editor support widget from an editor package. */
virtual bool AllowEditorWidget() const { return false; }
};