Add project files.

This commit is contained in:
minster586
2026-08-10 02:48:10 -04:00
parent 988b26e018
commit 4c6eae510e
12 changed files with 1229 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
namespace PainoBar_Helper
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Main());
}
}
}