Client/GamerServices/Program.cs

19 lines
432 B
C#
Raw Normal View History

2020-04-28 14:27:59 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Diagnostics;
namespace GamerServices
{
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormLogin());
}
}
}