Sorgente Release 1 (Codename "Campra")
This commit is contained in:
24
SamaPager_Server/Program.cs
Normal file
24
SamaPager_Server/Program.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace SamaPager_Server
|
||||
{
|
||||
internal static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// Punto di ingresso principale dell'applicazione.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
var splash = new Splash();
|
||||
splash.Show();
|
||||
Application.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user