25 lines
414 B
C#
25 lines
414 B
C#
using System.IO;
|
|
|
|
// public domain assumed from cyotek.com
|
|
namespace Cyotek.Drawing.BitmapFont
|
|
{
|
|
public struct Page
|
|
{
|
|
public Page(int id, string fileName)
|
|
: this()
|
|
{
|
|
FileName = fileName;
|
|
Id = id;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"{Id} ({Path.GetFileName(FileName)})";
|
|
}
|
|
|
|
public string FileName { get; set; }
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|