mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
14 lines
209 B
C#
14 lines
209 B
C#
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());
|
|
}
|
|
}
|
|
}
|