Got viewing files and diffing files (arbitrary commits) to work.
[Widgit.git] / Program.cs
blob73a5c44648c9e241be0c31f76682e9397e2c4b03
1 using System;
2 using System.Collections.Generic;
3 using System.Windows.Forms;
5 namespace Widgit
7 static class Program
9 /// <summary>
10 /// The main entry point for the application.
11 /// </summary>
12 [STAThread]
13 static void Main()
15 Application.EnableVisualStyles();
16 Application.SetCompatibleTextRenderingDefault(false);
17 Application.Run(new Form1());