UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
Interface_AsyncCompilation.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
7#pragma once
8
9#include "CoreMinimal.h"
11#include "UObject/Interface.h"
12#include "Interface_AsyncCompilation.generated.h"
13
14UINTERFACE(MinimalAPI, meta=(CannotImplementInterfaceInBlueprint))
19
21{
23
24#if WITH_EDITOR
26 virtual bool IsCompiling() const = 0;
27#else
29 virtual bool IsCompiling() const { return false; }
30#endif
31};
32
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define UINTERFACE(...)
Definition ObjectMacros.h:780
#define GENERATED_IINTERFACE_BODY(...)
Definition ObjectMacros.h:770
#define GENERATED_UINTERFACE_BODY(...)
Definition ObjectMacros.h:769
Definition Interface_AsyncCompilation.h:21
Definition Interface_AsyncCompilation.h:16
Definition Interface.h:19