Files
UnrealEngineUWP/Engine/Source/Programs/UnrealHeaderTool/Resources/UHTDebugging/TestInterfaceObject.h
Jaroslaw Palczynski b8c4d83b9c Enabling UHT to digest GENERATED_BODY instead of GENERATED_*_BODY.
#codereview Robert.Manuszewski

[CL 2481360 by Jaroslaw Palczynski in Main branch]
2015-03-17 06:02:26 -04:00

17 lines
399 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "TestInterfaceObject.generated.h"
UCLASS()
class UTestInterfaceObject : public UObject, public ITestInterface
{
GENERATED_BODY()
public:
UTestInterfaceObject(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get());
// UFUNCTION(BlueprintNativeEvent)
FString SomeFunction(int32 Val) const;
};