added configuration support for generalized sector effects

This commit is contained in:
codeimp 2008-02-21 06:47:43 +00:00
parent 9bfaae721e
commit 2e741f7c8e
14 changed files with 457 additions and 263 deletions

View file

@ -1145,6 +1145,16 @@ namespace CodeImp.DoomBuilder.Interface
f.Dispose();
}
// This shows the dialog to edit sectors
public void ShowEditSectors(ICollection<Sector> sectors)
{
// Show line edit dialog
SectorEditForm f = new SectorEditForm();
f.Setup(sectors);
f.ShowDialog(this);
f.Dispose();
}
#endregion
#region ================== Processor