difficult-knights-launcher/Dashboard/Program.cs

22 lines
488 B
C#
Raw Permalink Normal View History

2021-12-15 08:15:52 +00:00
using System;
using System.Windows.Forms;
namespace Dashboard
{
static class Program
{
public static object Version { get; internal set; }
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}