You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
18 lines
270 B
C++
18 lines
270 B
C++
#pragma once
|
|
|
|
#include "TestInterface.generated.h"
|
|
|
|
UINTERFACE()
|
|
class UTestInterface : public UInterface
|
|
{
|
|
GENERATED_UINTERFACE_BODY()
|
|
};
|
|
|
|
class ITestInterface
|
|
{
|
|
GENERATED_IINTERFACE_BODY()
|
|
|
|
UFUNCTION(BlueprintNativeEvent)
|
|
FString SomeFunction(int32 Val) const;
|
|
};
|