Add project files.

This commit is contained in:
2026-03-20 10:25:32 +00:00
parent 11967a67a1
commit 7913564d8e
65 changed files with 1261 additions and 0 deletions

22
SpriteStacker/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 SpriteStacker
{
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 Form1());
}
}
}