UnionPatcher/UnionPatcher.Gui.Windows/Program.cs
2021-10-18 11:23:29 -04:00

10 lines
No EOL
186 B
C#

using System;
namespace UnionPatcher.Gui.Windows {
public static class Program {
[STAThread]
public static void Main() {
Gui.Show();
}
}
}