Add GUI skeleton.

This commit is contained in:
2018-08-26 14:04:09 +01:00
parent 30f7523269
commit b88d1a6df7
24 changed files with 448 additions and 27 deletions

View File

@@ -0,0 +1,13 @@
using AppKit;
using Eto.Forms;
namespace DiscImageChef.Gui.XamMac
{
static class MainClass
{
static void Main(string[] args)
{
new Application(Eto.Platforms.XamMac2).Run(new MainForm());
}
}
}