mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2025-02-05 23:31:24 +00:00
21 lines
455 B
C#
21 lines
455 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace CodeImp.DoomBuilder.SoundPropagationMode
|
|
{
|
|
public partial class MenusForm : Form
|
|
{
|
|
public ToolStripButton ColorConfiguration { get { return colorconfiguration; } }
|
|
|
|
public MenusForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
// This invokes an action from control event
|
|
private void InvokeTaggedAction(object sender, EventArgs e)
|
|
{
|
|
General.Interface.InvokeTaggedAction(sender, e);
|
|
}
|
|
}
|
|
}
|