UI/ContextMenu/InspectorEditor.cs

Interface for an inspector editor. Declares a TrySetTarget method to apply a list of GameObject selection and a read-only Title property.

namespace Sandbox;

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