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