Add project files.

This commit is contained in:
2025-11-17 10:30:31 +01:00
parent b3c15fc192
commit 0153557a17
12 changed files with 996 additions and 0 deletions

22
SSP/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 SSP
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new StenSaxPåse());
}
}
}