mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-23 05:08: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;
|
||||||
using Microsoft.Xna.Framework.Graphics;
|
using Microsoft.Xna.Framework.Graphics;
|
||||||
using MLEM.Formatting.Codes;
|
using MLEM.Formatting.Codes;
|
||||||
|
using MLEM.Misc;
|
||||||
|
|
||||||
namespace MLEM.Font {
|
namespace MLEM.Font {
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents a font with additional abilities.
|
/// Represents a font with additional abilities.
|
||||||
/// <seealso cref="GenericSpriteFont"/>
|
/// <seealso cref="GenericSpriteFont"/>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public abstract class GenericFont {
|
public abstract class GenericFont : GenericDataHolder {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This field holds a special, private use area code point for a one em space.
|
/// This field holds a special, private use area code point for a one em space.
|
||||||
|
|
Loading…
Reference in a new issue