mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-10 06:41:49 +00:00
21 lines
No EOL
410 B
C#
21 lines
No EOL
410 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes.Editing
|
|
{
|
|
public partial class WAuthorTools : Form
|
|
{
|
|
// Tools
|
|
public ContextMenuStrip LinedefPopup { get { return linedefpopup; } }
|
|
|
|
// Constructor
|
|
public WAuthorTools()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |