mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-17 09:32:34 +00:00
19 lines
No EOL
344 B
C#
19 lines
No EOL
344 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CodeImp.DoomBuilder.Interface
|
|
{
|
|
public partial class MainForm : Form
|
|
{
|
|
// Constructor
|
|
public MainForm()
|
|
{
|
|
// Setup controls
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |