mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
made GenericFont a GenericDataHolder
This commit is contained in:
parent
bd43c14a33
commit
b814839458
1 changed files with 2 additions and 1 deletions
|
@ -2,13 +2,14 @@ using System.Text;
|
|||
using Microsoft.Xna.Framework;
|
||||
using Microsoft.Xna.Framework.Graphics;
|
||||
using MLEM.Formatting.Codes;
|
||||
using MLEM.Misc;
|
||||
|
||||
namespace MLEM.Font {
|
||||
/// <summary>
|
||||
/// Represents a font with additional abilities.
|
||||
/// <seealso cref="GenericSpriteFont"/>
|
||||
/// </summary>
|
||||
public abstract class GenericFont {
|
||||
public abstract class GenericFont : GenericDataHolder {
|
||||
|
||||
/// <summary>
|
||||
/// This field holds a special, private use area code point for a one em space.
|
||||
|
|
Loading…
Reference in a new issue