Add project files.

This commit is contained in:
Wesley Hofman
2025-08-29 18:17:48 +02:00
parent 31eaf9e5f7
commit a0d5f3b21b
23 changed files with 2144 additions and 0 deletions

22
HTOLHAST/Program.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace HTOLHAST
{
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());
}
}
}