add the thing

This commit is contained in:
random() 2025-04-21 17:54:03 -06:00
commit 693666f285
45 changed files with 2601 additions and 0 deletions

View file

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