timelapsenow/Timelapse.Linux/Program.cs

10 lines
244 B
C#
Raw Normal View History

2022-05-20 02:06:35 +00:00
namespace Timelapse;
using Eto.Forms;
public class Program
{
public static void Main(string[] args)
{
new Application().Run(new MainForm(args) { Width = 640, Height = 480, Title = "Timelapse Now" });
}
}