mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-25 11:35:12 +00:00
11 lines
145 B
C#
11 lines
145 B
C#
|
using System;
|
||
|
|
||
|
namespace Ryujinx.Horizon.Common
|
||
|
{
|
||
|
public interface IExternalEvent
|
||
|
{
|
||
|
void Signal();
|
||
|
void Clear();
|
||
|
}
|
||
|
}
|