Add project files.

This commit is contained in:
2025-08-09 15:45:34 -06:00
commit c547297c1e
56 changed files with 3908 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomatedROMTools
{
/// <summary>
/// The Main Program Class.
/// </summary>
class Program
{
static void Main(string[] args)
{
// Create a new program object.
AutomatedROMTools ART = new AutomatedROMTools();
// Input the variables passed from the command line arguments.
ART.SetVariablesFromCLI(args);
// Print the version.
ART.PrintVersion();
// Process the command switch.
ART.ProcessCommandSwitch();
// Output the log to a text file.
ART.SaveLog();
}
}
}