PinkConnection2/PC2Converter/PC2Converter.Wpf/Program.cs

14 lines
223 B
C#

using System;
using Eto.Forms;
namespace PC2Converter.Wpf
{
class Program
{
[STAThread]
public static void Main(string[] args)
{
new Application(Eto.Platforms.Wpf).Run(new MainForm());
}
}
}