10 lines
244 B
C#
10 lines
244 B
C#
|
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" });
|
|||
|
}
|
|||
|
}
|