An empty abstract UI panel type that inherits from Sandbox.UI.Panel. It is a placeholder used so the type editor can list ScreenPanel-derived types separately from generic Panel types.
namespace PanelRenderTarget;
//placeholder for get better list in type editor we can list all Screen Panels and not just Panel
public abstract class ScreenPanel : Sandbox.UI.Panel
{
}