Initial commit

This commit is contained in:
watsonb8
2019-05-16 18:07:36 -04:00
commit 4f8b6f49fa
18 changed files with 739 additions and 0 deletions

16
Aurora.gtk/MainWindow.cs Normal file
View File

@@ -0,0 +1,16 @@
using System;
using Gtk;
public partial class MainWindow : Gtk.Window
{
public MainWindow() : base(Gtk.WindowType.Toplevel)
{
Build();
}
protected void OnDeleteEvent(object sender, DeleteEventArgs a)
{
Application.Quit();
a.RetVal = true;
}
}