namespace Ryujinx.Audio.Integration
{
/// <summary>
/// Represent a writable event with manual clear.
/// </summary>
public interface IWritableEvent
/// Signal the event.
void Signal();
/// Clear the signaled state of the event.
void Clear();
}