Files
UnrealEngine/Engine/Source/ThirdParty/DotNetZip/Examples/CompactFramework/CF-Unzipper/Program.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

18 lines
358 B
C#

using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace SmartDeviceProject3
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[MTAThread]
static void Main()
{
Application.Run(new Form1());
}
}
}