21 lines
381 B
C#
21 lines
381 B
C#
|
using System;
|
|||
|
using Gtk;
|
|||
|
|
|||
|
namespace Buypeeb {
|
|||
|
class BuypeebApp {
|
|||
|
[STAThread]
|
|||
|
public static void Main(string[] args) {
|
|||
|
Application.Init();
|
|||
|
|
|||
|
var app = new Application("space.lynnesbian.Buypeeb", GLib.ApplicationFlags.None);
|
|||
|
app.Register(GLib.Cancellable.Current);
|
|||
|
|
|||
|
var win = new MainWindow();
|
|||
|
app.AddWindow(win);
|
|||
|
|
|||
|
win.Show();
|
|||
|
Application.Run();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|