UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
Visual.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
7#include "UObject/Object.h"
8#include "Visual.generated.h"
9
11UCLASS(DefaultToInstanced, MinimalAPI)
13{
15
16public:
17 UMG_API virtual void ReleaseSlateResources(bool bReleaseChildren);
18
19 //~ Begin UObject Interface
20 UMG_API virtual void BeginDestroy() override;
21 UMG_API virtual bool NeedsLoadForServer() const override;
22 //~ End UObject Interface
23
24private:
25 // Hide this to avoid confusion with UI selection state
27};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define GENERATED_UCLASS_BODY(...)
Definition ObjectMacros.h:768
#define UCLASS(...)
Definition ObjectMacros.h:776
Definition Object.h:95
COREUOBJECT_API bool IsSelected() const
Definition Obj.cpp:1599
Definition Visual.h:13