Files
UnrealEngine/Engine/Source/Editor/FontEditor/Public/IFontFaceEditor.h
2025-05-18 13:04:45 +08:00

23 lines
590 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Toolkits/AssetEditorToolkit.h"
class UFontFace;
/*-----------------------------------------------------------------------------
IFontFaceEditor
-----------------------------------------------------------------------------*/
class IFontFaceEditor : public FAssetEditorToolkit
{
public:
/** Returns the font face asset being inspected by the font face editor */
virtual UFontFace* GetFontFace() const = 0;
/** Refresh the preview viewport */
virtual void RefreshPreview() = 0;
};