Files
UnrealEngine/Engine/Source/ThirdParty/Perforce/P4Api.Net/examples/sln-bld-gui/Program.cs
2025-05-18 13:04:45 +08:00

22 lines
491 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace Perforce.sln.bld.gui
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormMain());
}
}
}