This commit is contained in:
2022-06-17 20:12:50 +00:00
parent c103f9577d
commit ab28b85e14
23 changed files with 4802 additions and 0 deletions

22
AyaNovaQBI/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 AyaNovaQBI
{
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 MainForm());
}
}
}