mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-10 16:21:58 +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();
|
||
|
}
|
||
|
}
|