diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..c0e2bce --- /dev/null +++ b/Program.cs @@ -0,0 +1,20 @@ +using System; +using Gtk; + +namespace Buypeeb { + class Program { + [STAThread] + public static void Main(string[] args) { + Application.Init(); + + var app = new Application("org.buypeeb.buypeeb", GLib.ApplicationFlags.None); + app.Register(GLib.Cancellable.Current); + + var win = new MainWindow(); + app.AddWindow(win); + + win.Show(); + Application.Run(); + } + } +}