Projektdateien hinzufügen.

This commit is contained in:
Brendan
2024-05-26 23:03:20 +02:00
parent c37870554a
commit 4f60cbb5de
12 changed files with 706 additions and 0 deletions

23
V_EditorPro/Program.cs Normal file
View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using V_EditorPro;
namespace V_EditorPro
{
internal static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}