1
0
mirror of synced 2025-01-05 19:14:30 +01:00
Switch-Toolbox/GL_EditorFramework-master/Testing/Program.cs

23 lines
436 B
C#
Raw Normal View History

2018-11-12 02:07:44 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Testing
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new TestingForm());
}
}
}