blob: 9a12e3d2894a757b5b9f231b9493d2c54dd54378 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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();
}
}
|