Files
FontGlyphExporter/Program.cs
2025-04-04 19:26:10 -04:00

17 lines
285 B
C#

using System;
using System.Windows.Forms;
namespace FontGlyphExporter
{
internal static class Program
{
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new MainForm());
}
}
}