Files
UnrealEngine/Engine/Source/Editor/PropertyEditor/Private/Tests/SinglePropertyTests.h
2025-05-18 13:04:45 +08:00

21 lines
394 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "UObject/Object.h"
#include "Math/MathFwd.h"
#include "SinglePropertyTests.generated.h"
#if WITH_EDITORONLY_DATA
UCLASS()
class UPropertyEditorSinglePropertyTestClass : public UObject
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, Category = "Properties")
FVector Vector;
};
#endif // WITH_EDITORONLY_DATA