UltimateZoneBuilder/Source/Core/Windows/MenuSection.cs
MaxED 07db2506c5 Added, Things mode: minimum/maximum sound radii can now be displayed for ZDoom's Ambient Sound things.
Added, Things mode: added "Show Light Radii" and "Show Sound Radii" main toolbar and View menu buttons.
Fixed, Action arguments control: invisible splitter between args1-3 and args4-5 is no longer draggable.
Updated ZDoom ACC (SetTranslation).
Updated ZDoom_ACS.cfg (SetTranslation).
2016-10-03 11:42:12 +00:00

51 lines
1 KiB
C#

#region ================== Copyright (c) 2007 Pascal vd Heiden
/*
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
* This program is released under GNU General Public License
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#endregion
#region ================== Namespaces
#endregion
namespace CodeImp.DoomBuilder.Windows
{
public enum MenuSection
{
FileNewOpenClose,
FileSave,
FileImport, //mxd
FileExport, //mxd
FileRecent,
FileExit,
EditUndoRedo,
EditCopyPaste,
EditGeometry,
EditGrid,
EditMapOptions,
ViewThings,
ViewViews,
ViewHelpers, //mxd
ViewRendering, //mxd
ViewZoom,
ViewScriptEdit,
PrefabsInsert,
PrefabsCreate,
ToolsResources,
ToolsConfiguration,
ToolsTesting,
HelpManual,
HelpAbout,
Top
}
}