Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

27 lines
569 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleInterface.h"
#include "Fonts/FontTypes.h"
#include "Rendering/SlateRenderer.h"
/**
* Interface for the Slate RHI Renderer module.
*/
class ISlateNullRendererModule
: public IModuleInterface
{
public:
/**
* Creates a Slate RHI renderer.
*
* @return A new renderer which renders nothing.
*/
virtual TSharedRef<FSlateRenderer> CreateSlateNullRenderer( ) = 0;
virtual TSharedRef<ISlateFontAtlasFactory> CreateSlateFontAtlasFactory() = 0;
};