This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
UpTool2/UpToolEto/UpToolEto.Gtk/Program.cs

17 lines
303 B
C#
Raw Normal View History

using System;
using Eto.Forms;
namespace UpToolEto.Gtk
{
class MainClass
{
[STAThread]
public static void Main(string[] args)
{
UpToolEto.Main.Entry(new Application(Eto.Platforms.Gtk), () =>
{
});
}
}
}