This repository has been archived on 2025-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
Settings/Vichingo455 Settings/Program.cs

23 lines
536 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Vichingo455_Settings
{
internal static class Program
{
/// <summary>
/// Punto di ingresso principale dell'applicazione.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}