Files
2025-11-30 08:35:03 +02:00

11 lines
373 B
C#

namespace Needle.Engine
{
/// <summary>
/// MonoBehaviours implementing this interface can add additional characters to generated font atlases.
/// This ensures that they are available to be displayed in UI components at runtime.
/// </summary>
public interface IAdditionalFontCharacters
{
public string GetAdditionalCharacters();
}
}