Files
UnrealEngineUWP/Engine/Source/Programs/UnrealHeaderTool/Resources/UHTDebugging/TestDeprecatedObject.h

22 lines
373 B
C
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "TestDeprecatedObject.generated.h"
namespace EFoo
{
enum Bar
{
Example,
};
}
UCLASS(deprecated)
class UDEPRECATED_TestDeprecatedObject : public UObject
{
GENERATED_BODY()
public:
UDEPRECATED_TestDeprecatedObject(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get());
};