Complete MP5

This commit is contained in:
2022-11-27 17:11:02 -06:00
parent 52d6e079df
commit ae12b42c28
153 changed files with 1344 additions and 215 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace Seating_Chart
{
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());
}
}
}