A minimal UI component class in the Sandbox namespace named PlayerReferenceHUD. It derives from Component and overrides OnUpdate but contains no implementation.
namespace Sandbox;
public sealed class PlayerReferenceHUD : Component
{
protected override void OnUpdate()
{
}
}