15 lines
234 B
C#
15 lines
234 B
C#
|
|
using System;
|
|||
|
|
using Eto;
|
|||
|
|
using Eto.Forms;
|
|||
|
|
|
|||
|
|
namespace CrossZicMoove.Desktop
|
|||
|
|
{
|
|||
|
|
public class Program
|
|||
|
|
{
|
|||
|
|
[STAThread]
|
|||
|
|
public static void Main (string[] args)
|
|||
|
|
{
|
|||
|
|
new Application (Platform.Detect).Run (new MainForm ());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|