HorseisleMapEditor/SilicaTilesEditor/Program.cs

26 lines
621 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SilicaTilesEditor
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
///
public static MainForm form;
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
form = new MainForm();
Application.Run(form);
}
}
}