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