using System; using Eto.Forms; namespace USTConverter.Gtk { class Program { [STAThread] public static void Main(string[] args) { new Application(Eto.Platforms.Gtk).Run(new MainForm()); } } }