Firstborn/Library/PackageCache/com.unity.render-pipelines..../Runtime/Debug/IDebugDisplaySettingsPanel.cs

22 lines
495 B
C#
Raw Normal View History

2023-03-28 13:24:16 -04:00
using System;
namespace UnityEngine.Rendering.Universal
{
public interface IDebugDisplaySettingsPanel
{
/// <summary>
/// The name used when displaying this panel.
/// </summary>
string PanelName { get; }
/// <summary>
/// Widgets used by this panel.
/// </summary>
DebugUI.Widget[] Widgets { get; }
}
public interface IDebugDisplaySettingsPanelDisposable : IDebugDisplaySettingsPanel, IDisposable
{
}
}