Changed Client library

This commit is contained in:
Nicola
2020-10-23 16:23:59 +02:00
parent c7c8564aff
commit 5eb07dfaa4
60 changed files with 10376 additions and 24 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Client_New
{
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());
}
}
}