blob: 3841ff5beec2aa4e29d09ea8c8ea50b28dc93def (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System.Xml.Serialization;
namespace MonoGame.Extended.Content.Pipeline.BitmapFonts
{
// ---- AngelCode BmFont XML serializer ----------------------
// ---- By DeadlyDan @ deadlydan@gmail.com -------------------
// ---- There's no license restrictions, use as you will. ----
// ---- Credits to http://www.angelcode.com/ -----------------
public class BitmapFontPage
{
[XmlAttribute("id")]
public int Id { get; set; }
[XmlAttribute("file")]
public string File { get; set; }
}
}
|