13 lines
267 B
C#
13 lines
267 B
C#
|
namespace Timelapse;
|
||
|
using Eto.Forms;
|
||
|
using System;
|
||
|
|
||
|
public class Program
|
||
|
{
|
||
|
[STAThread]
|
||
|
public static void Main(string[] args)
|
||
|
{
|
||
|
|
||
|
new Application().Run(new MainForm(args) {Width=640,Height=480, Title="Timelapse Now"});
|
||
|
}
|
||
|
}
|