2019-12-26 23:06:02 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2014-12-06 19:14:20 -05:00
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "TestInterface.generated.h"
|
|
|
|
|
|
|
|
|
|
UINTERFACE()
|
|
|
|
|
class UTestInterface : public UInterface
|
|
|
|
|
{
|
2015-03-17 06:02:26 -04:00
|
|
|
GENERATED_BODY()
|
|
|
|
|
public:
|
|
|
|
|
UTestInterface(const FObjectInitializer& ObjectInitializer = FObjectInitializer::Get());
|
2014-03-14 14:13:41 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class ITestInterface
|
|
|
|
|
{
|
2015-03-17 06:02:26 -04:00
|
|
|
GENERATED_BODY()
|
|
|
|
|
public:
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
UFUNCTION(BlueprintNativeEvent)
|
|
|
|
|
FString SomeFunction(int32 Val) const;
|
2018-11-30 06:47:00 -05:00
|
|
|
|
|
|
|
|
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
|
|
|
|
const float SomeFunctionWithConstReturnType() const;
|
|
|
|
|
|
|
|
|
|
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
|
|
|
|
UObject* SomeFunctionWithNonConstPointerReturnType() const;
|
|
|
|
|
|
|
|
|
|
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
|
|
|
|
|
const UObject* SomeFunctionWithConstPointerReturnType() const;
|
2021-04-08 14:32:07 -04:00
|
|
|
|
|
|
|
|
UFUNCTION(BlueprintImplementableEvent)
|
|
|
|
|
int64 ReturnInt64();
|
2014-03-14 14:13:41 -04:00
|
|
|
};
|