v1.3 Release

Code optimization..
This commit is contained in:
Paolo 2018-10-23 12:33:46 +02:00 committed by GitHub
commit 0759d094bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 3083 additions and 0 deletions

21
Win_1337_Patch/Program.cs Normal file
View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace Win_1337_Patch
{
static class Program
{
/// <summary>
/// Punto di ingresso principale dell'applicazione.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}