Version 6.6.0 (2025-02-11): Originalversion auf Lehrerfortbildungsserver (2022)

This commit is contained in:
Thomas Schaller 2025-02-11 16:22:42 +01:00
parent 7f19235667
commit c922801a4e
211 changed files with 7084 additions and 0 deletions

View file

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