Initial upload of project

This commit is contained in:
NinjaPug
2025-04-04 19:26:10 -04:00
parent dd928a6f3f
commit 10838f33a9
7 changed files with 654 additions and 0 deletions

16
Program.cs Normal file
View File

@@ -0,0 +1,16 @@
using System;
using System.Windows.Forms;
namespace FontGlyphExporter
{
internal static class Program
{
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
Application.Run(new MainForm());
}
}
}