mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-15 00:01:28 +00:00
22 lines
495 B
C#
22 lines
495 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Windows.Forms;
|
|
|
|
namespace EQExtractor2
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new EQExtractor2Form1());
|
|
}
|
|
}
|
|
}
|