mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-03-25 13:28:28 -06:00
23 lines
372 B
C#
23 lines
372 B
C#
using System;
|
|
using System.Drawing;
|
|
using System.Collections;
|
|
using System.ComponentModel;
|
|
using System.Windows.Forms;
|
|
using System.Data;
|
|
using SpiffLib;
|
|
using m;
|
|
|
|
namespace MapEdit
|
|
{
|
|
public class Wrapper
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main() {
|
|
Application.Run(new MainForm());
|
|
}
|
|
}
|
|
}
|