mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
22 lines
476 B
C#
22 lines
476 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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|