Files
BoxPacker3D/Program.cs
T
2026-06-05 22:02:32 +02:00

17 lines
327 B
C#

using System;
using System.Windows.Forms;
namespace BoxPacker3D
{
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}