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

35 lines
637 B
C#
Raw Normal View History

2014-01-27 00:02:21 +00:00
//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
}
}