1 2 3 4 5 6 7 8 9 10
using System; namespace Ryujinx.Horizon.Common { public interface IExternalEvent { void Signal(); void Clear(); } }