You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb phillip.kavan #rnx #preflight 6075cfa00a49b700011f10a3 [CL 15992752 by Tim Smith in ue5-main branch]
26 lines
752 B
C++
26 lines
752 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/ObjectMacros.h"
|
|
#include "UObject/Interface.h"
|
|
#include "NodeDependingOnEnumInterface.generated.h"
|
|
|
|
UINTERFACE(meta=(CannotImplementInterfaceInBlueprint))
|
|
class BLUEPRINTGRAPH_API UNodeDependingOnEnumInterface : public UInterface
|
|
{
|
|
GENERATED_UINTERFACE_BODY()
|
|
};
|
|
|
|
class BLUEPRINTGRAPH_API INodeDependingOnEnumInterface
|
|
{
|
|
GENERATED_IINTERFACE_BODY()
|
|
|
|
virtual class UEnum* GetEnum() const PURE_VIRTUAL(INodeDependingOnEnumInterface::GetEnum,return NULL;);
|
|
|
|
virtual void ReloadEnum(class UEnum*) PURE_VIRTUAL(INodeDependingOnEnumInterface::ReloadEnum, return;);
|
|
|
|
virtual bool ShouldBeReconstructedAfterEnumChanged() const {return false;}
|
|
};
|