BizHawk/Bizware/BizHawk.Bizware.BizwareGL/Borrowed/BitmapFontParser/Character.cs

35 lines
637 B
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//public domain assumed from cyotek.com
using System.Drawing;
namespace Cyotek.Drawing.BitmapFont
{
public struct Character
{
#region  Public Methods
public override string ToString()
{
return this.Char.ToString();
}
#endregion  Public Methods
#region  Public Properties
public int Channel { get; set; }
public Rectangle Bounds { get; set; }
public Point Offset { get; set; }
public char Char { get; set; }
public int TexturePage { get; set; }
public int XAdvance { get; set; }
#endregion  Public Properties
}
}