Started UI - project

This commit is contained in:
2020-03-18 00:05:38 +01:00
parent 13585435d4
commit 72f1ccb098
12 changed files with 654 additions and 0 deletions

22
TrackerUI/Program.cs Normal file
View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TrackerUI
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new TournamentViewerForm());
}
}
}