Add project files.

This commit is contained in:
RussK
2022-02-11 20:21:17 -06:00
parent d6441738da
commit 900beadd18
11 changed files with 429 additions and 0 deletions

19
Program.cs Normal file
View File

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