TINF20C_ModellingWizard_Dev.../SOURCE/Application/Program.cs
H4CK3R-01 98119c56f4 - Added plugin source code
- removed plugin dll
- Changed file structure
- Added readme
2022-03-11 17:13:30 +01:00

23 lines
506 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace App
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}