First Commit

This commit is contained in:
eRgo35
2020-09-10 18:47:38 +02:00
parent 3c87d82dff
commit e80e155e06
18 changed files with 3766 additions and 0 deletions

22
Server Manager/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 Server_Manager
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
}
}
}