Add project files.

This commit is contained in:
Hunter Rafferty
2024-02-05 00:15:27 -05:00
commit e508eb1adc
112 changed files with 9178 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AC_e_Reader_Card_Creator
{
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 eReaderCCC());
}
}
}