using Sandbox;
namespace Editor;
public static partial class EditorEvent
{
///
/// Events that happen within the map editor.
///
public static class MapEditor
{
///
/// Called when the user selects / deselects any object in the map and is changed.
///
public class SelectionChanged : EventAttribute { public SelectionChanged() : base( "hammer.selection.changed" ) { } }
///
/// Called when the map view is right clicked, is passed.
///
public class MapViewContextMenu : EventAttribute { public MapViewContextMenu() : base( "hammer.mapview.contextmenu" ) { } }
}
}