using System.Collections.Generic;
namespace Robust.Client.Graphics.FontManagement;
///
/// A fallback implementation of that just loads no fonts.
///
internal sealed class SystemFontManagerFallback : ISystemFontManagerInternal
{
public void Initialize()
{
}
public void Shutdown()
{
}
public bool IsSupported => false;
public IEnumerable SystemFontFaces => [];
}