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

17 lines
389 B
C
Raw Normal View History

// Copyright 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;
};