Added haromszog, szokoev, szonda

This commit is contained in:
szabomarton
2024-03-04 11:11:08 +01:00
parent 6bd6632020
commit b610fd6dcd
78 changed files with 2098 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Haromszog
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}