11 lines
373 B
C#
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();
|
|
}
|
|
} |