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