UI/ContextMenu/InspectorEditor.cs

Interface for inspector editors in the UI. Declares a Title property and a TrySetTarget method that accepts a List<GameObject> selection and returns bool.

namespace Sandbox;

public interface IInspectorEditor
{
	public bool TrySetTarget( List<GameObject> selection );
	public string Title { get; }
}