using System;
using UnityEngine;
namespace UnityEngine.Rendering
{
///
/// Interface for storing the debug settings
///
public interface IDebugDisplaySettings : IDebugDisplaySettingsQuery
{
///
/// Reset the stored debug settings
///
void Reset();
///
/// Executes an action for each element
///
///
void ForEach(Action onExecute);
}
}