using Microsoft.Iris.Debug.Data;
using System;
namespace Microsoft.Iris.Debug;
public interface IDebuggerClient
{
///
/// Fired when the UIX interpreter steps forward.
///
event EventHandler InterpreterStep;
///
/// Fired when the UIX dispatcher executes another call from the queue.
///
event Action DispatcherStep;
}